declare const configByCategory: {
    'flat/pedantic': {
        name: string;
        rules: Record<string, "off">;
    };
    'flat/suspicious': {
        name: string;
        rules: Record<string, "off">;
    };
    'flat/style': {
        name: string;
        rules: Record<string, "off">;
    };
    'flat/restriction': {
        name: string;
        rules: Record<string, "off">;
    };
    'flat/correctness': {
        name: string;
        rules: Record<string, "off">;
    };
    'flat/perf': {
        name: string;
        rules: Record<string, "off">;
    };
};
export default configByCategory;
