import { IResponseState } from "../types"; export interface ICreateFolder extends IResponseState { data: { folder: string; path: string; timestamp: string; }; path: string; } export type ICreateFolderError = {} & IResponseState; export declare namespace Folder { const create: (folderPath: string) => Promise; const remove: (folderPath: string) => Promise; } //# sourceMappingURL=Folder.d.ts.map