declare const Utils: {
    exit(msg: any): void;
    parseRe(re: any): any;
    file: {
        exists(filePath: any): boolean;
        read(filePath: any): string;
        write(filePath: any, content: any): void;
    };
};
export default Utils;
