/** * Returns the name of the file at a given path * @param pathFile // The path of the file */ export declare function getFilename(pathFile?: string): string; export declare function getFolderPath(filePath: string): string; export declare function getClonedFilePath(originalPath: string): string; export declare function ensureDir(folderPath: string): Promise; export declare function ensureDirAndCopy(source: string, target: string): Promise; export declare function isInFolder(path: string, folder: string): boolean;