import type { Linter, Rule } from "eslint";

declare const config: {
    plugin: {
        meta: {
            name: string;
            version: string;
        };
        rules: Record<string, Rule.RuleModule>;
    };

    configs: {
        recommended: Linter.Config;
    };
};

export default config;
