import type { Tree } from '../tree';
/**
 * Formats all the created or updated files using Prettier
 * @param tree - the file system tree
 */
export declare function formatChangedFilesWithPrettierIfAvailable(tree: Tree): Promise<void>;
