import type { Linter } from "eslint"; import type { ESLint } from "eslint"; type Plugin = { meta: { name: string; version: string; }; rules: ESLint.Plugin["rules"]; configs: { strict: Linter.Config; recommended: Linter.Config; }; }; declare const plugin: Plugin; export default plugin;