export declare function isFile(path: string): Promise<boolean>;
export declare function isDirectory(path: string): Promise<boolean>;
export declare function moveFile(src: string, dest: string): Promise<void>;
