export declare const jsonp2json: (jsonp: string) => string; export declare const createDir: (dirFullPath: any) => void; export declare const fileIsExists: (filePath: string) => boolean; export declare const writeFile: (file: string, content: string) => void; export declare const sleep: (time: number) => Promise; export declare const deleteFolderSync: (filePath: string) => void; export declare const copyFolderRecursiveSync: (source: string, target: string) => void;