export declare const getFilesFromPath: (filePath: string, includeHiddenFiles?: boolean) => Promise; export declare const copyFileToFolder: (file: string, folder: string) => Promise; export declare const recursiveCopyFiles: (sourceFolder: string, targetFolder: string) => Promise; export declare const createFolders: (folders: string[]) => void;