import { Folder } from '../types'; export declare function createFolderStructure(folder: Folder, parentFolderName?: string): Promise; export declare function isSasFile(filePath: string): boolean; export declare function isJsonFile(filePath: string): boolean; export declare function isCsvFile(filePath: string): boolean; export declare function isShellScript(filePath: string): boolean; export declare function isPowerShellScript(filePath: string): boolean; export declare const sanitizeFileName: (fileName: string) => string; export declare function getBrief(fileContent: string): string | undefined; export declare const sasFileRegExp: RegExp;