export declare const fileExists: (path: string) => Promise; export declare const isFile: (path: string) => Promise; export declare const isDir: (path: string) => Promise; export declare const isSymbolicLink: (path: string) => Promise; export declare const realPathForSymbolicLink: (path: string) => Promise; export declare const findYAMLFilename: (baseName: string) => Promise; export declare const requireDir: (dirName: string) => Promise; export declare const ensureDir: (dirname: string) => Promise; export type YAMLFileData = { [key: string]: string | object | number | undefined; }; export declare const readYAMLFile: (filename: string) => YAMLFileData; //# sourceMappingURL=file-util.d.ts.map