export declare function fileExists(path: string): Promise<boolean>;
export declare function folderExists(folderPath: string): Promise<boolean>;
export declare function isFolderEmpty(path: string): Promise<boolean>;
export declare function copy(src: string, dest: string): Promise<void>;
