export declare const readFile: (filePath: string) => string;
export declare const writeFile: (filePath: string, data: string) => void;
export declare const getFilePathesByGlob: (globPattern: string) => Promise<string[]>;
export declare const prettifyCode: (code: string) => string;