export declare const folderNameIsValid: (folderName: string) => boolean;
export declare const pathExists: (path: string) => Promise<boolean>;
export declare const createFolder: (folderName: string) => Promise<boolean>;
