import { TransformConfig } from './types';
/**
 *
 * Runs the transformations from an object we get from yeoman
 *
 * @param	{Object} transformConfig 	- Configuration to transform
 * @param	{String} action 			- Action to be done on the given ast
 * @returns {Promise} - A promise that writes each transform, runs prettier
 * and writes the file
 */
export declare function runTransform(transformConfig: TransformConfig, action: string, generateConfig: boolean): void;
