import { ESLint, Linter } from "eslint"; //#region src/index.d.ts type ConfigName = "all" | "disable-conflict-eslint-plugin-react" | "disable-conflict-eslint-plugin-react-hooks" | "disable-dom" | "disable-jsx" | "disable-rsc" | "disable-experimental" | "disable-type-checked" | "disable-web-api" | "dom" | "jsx" | "rsc" | "off" | "recommended" | "recommended-type-checked" | "recommended-typescript" | "strict" | "strict-type-checked" | "strict-typescript" | "web-api" | "x"; declare const finalPlugin: ESLint.Plugin & { /** * For more information about each preset, please refer to the documentation. * @see https://eslint-react.xyz/docs/presets */ configs: Record; }; //#endregion export { finalPlugin as default };