import * as texpk from "texpk"; export declare function listFiles(folder: string): string[]; export declare function joinFile(folder: any, file: any): string; export declare function readFileContent(filepath: any): string; export declare function readFileList(filepath: any): any[]; export declare function findFile(filepath: any): boolean; export declare function readFolderList(filepath: string): any[]; export declare function getFileName(path: any): any; export declare function createFolderAndSaveFile(file: string, data: any): void; export declare function createFolder(folder: string): boolean; export declare function mkdirsSync(dirname: any): boolean; export declare function removeFolder(folder: string): void; export declare function removeFiles(folder: string, files: string[]): void; export declare function copyTo(srcFile: string, dstFile: string): void; export declare function readFolder(folder: string, exclude?: string[]): string[]; export declare function texturePacker(data: texpk.TexpkParam): Promise; export declare const DefaultExcludeFolders: string[];