export declare class File { readonly path: any; readonly isDirectory: any; readonly name: any; readonly simpleName: any; readonly ext: any; readonly lastModified: any; readonly dir: any; constructor(absolutePath: any, stat: any); matches(regex: any): boolean; exists(): any; getExtension(): any; isFile(type?: string): any; } export default class FileUtil { static listFilesSync(absolutePath: any, filter: (file: File) => boolean): any[]; static forceMkDirSync(dir: any): boolean; static rmDirSync(path: any): void; static compressSync(dir: any, output: any): Promise; }