import type { AnyFunction } from '../types/common.types'; export declare const mkDir: (filePath: string) => void; export declare const mkFile: (filePath: string, data: string, onCreate?: AnyFunction) => void; export declare const fileExists: (filePath: string) => boolean; export declare const normalizePath: (filePath: string) => string;