export declare const isDirectory: (cwdOrPath: string, name?: string) => boolean; export declare const isFile: (cwdOrPath: string, name?: string) => boolean; export declare const findFile: (cwd: string, fileName: string) => string | undefined; export declare const findFileWithExtensions: (basePath: string, extensions: string[]) => string | undefined; export declare const loadFile: (filePath: string) => Promise; export declare const hasFileWithExtension: (cwd: string, dirName: string, extensions: string[]) => boolean; export declare const loadJSON: (filePath: string) => Promise; export declare const loadJSONC: (filePath: string) => Promise; export declare const loadYAML: (filePath: string) => Promise; export declare const loadTOML: (filePath: string) => Promise; export declare const parseJSONC: (filePath: string, contents: string) => Promise; export declare const parseYAML: (contents: string) => any; export declare const tryRealpath: (filePath: string) => string;