export declare const fileExistsAsync: (filePath: string) => Promise<boolean>;
/**
 * Checks if the provided filePath is a file
 */
export declare const isFileAsync: (filePath: string) => Promise<boolean>;
/**
 * Checks if the provided filePath is a directory
 */
export declare const isDirectoryAsync: (filePath: string) => Promise<boolean>;
//# sourceMappingURL=fs.d.ts.map