export declare const FILE_TYPE_MAP: {
    js: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
    };
    ts: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
    };
    jsx: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
    };
    tsx: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
    };
    vue: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
        isVue: boolean;
    };
    scss: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
        isStyle: boolean;
    };
    css: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
        isStyle: boolean;
    };
    less: {
        reg: RegExp;
        lintKeyword: string;
        outputFileName: string;
        isStyle: boolean;
    };
};
