1export declare function fileExistsAsync(file: string): Promise<boolean>;
2export declare function directoryExistsAsync(file: string): Promise<boolean>;
3export declare function fileExists(file: string): boolean;
4