export = Utils;
declare function Utils(opts: any): void;
declare class Utils {
    constructor(opts: any);
    sep: string;
    fs: any;
    makeDir(folder: any): void;
    writeFileTo(path: any, content: any, overwrite: any, attr: any): boolean;
    writeFileToAsync(path: any, content: any, overwrite: any, attr: any, callback: any): void;
    findFiles(path: any): any[];
    getAttributes(): void;
    setAttributes(): void;
}
declare namespace Utils {
    export { isWin };
    export { crcTable };
}
declare const isWin: boolean;
declare const crcTable: Uint32Array;
