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