export declare const error: (msg: any) => void; export declare const warning: (msg: any) => void; export declare const log: (msg: any) => void; export declare const success: (msg: any) => void; export declare const writeFile: (writePath: string, data: string) => Promise; export declare const isPrototype: (original: any, target: any) => boolean; /** * 获取 pathB相对于pathA需要走多少步,才能找到对方 * @param pathA * @param pathB * @param depth * @returns */ export declare function getRelativePathABDepth(pathA: any, pathB: any, depth?: number): any; export declare function format(code: string): string; export declare const recursionDirFindPath: (rootDir: string, target: string) => { path: string; target: string; }; export declare const toHump: (str: string, isBigHump?: boolean) => string;