import prettier from 'prettier'; export declare const getAbsolutePath: (pathName: string) => string; export declare const getRelativePath: (absolutePath1: string, absolutePath2: string) => string; export declare const prettierData: (fileContent: string, options?: prettier.Options) => Promise; export declare const copyOptions: (options: T) => T; export declare const winPath: (pathStr: string) => string; export declare const removeFilesSync: (dir: string) => void; export type IPrettierOptions = Parameters[1]; type IWriteFileOpts = { prettierOptions?: IPrettierOptions; absolutePath: string; data: string; successTip?: string; }; export declare const writePrettierFile: (opts: IWriteFileOpts) => Promise; export {};