// Minimal declaration written by scripts/build-package.ts. // // tsc's generated entry declaration inlined every inferred rule-option type // (up to 166 kB per plugin) for an API no consumer calls directly. This types // what a flat config actually touches. Per-rule option types remain available // from the "./types" subpath export where a plugin provides one. import type { Linter, Rule } from 'eslint'; export declare const rules: Record; export declare const configs: Record; export declare const plugin: { meta: { name: string; version: string }; rules: Record; }; declare const _default: typeof plugin; export default _default;