import type { ESLint, Linter } from "eslint"; import type { SdlConfigName } from "./_internal/config-references.js"; type SdlConfig = Readonly; type SdlConfigArray = readonly SdlConfig[]; type SdlPluginWithConfigs = ESLint.Plugin & { readonly configs: Readonly>; }; /** ESLint plugin entrypoint with SDL rule set and flat-config presets. */ declare const sdlPlugin: SdlPluginWithConfigs; export default sdlPlugin; //# sourceMappingURL=plugin.d.ts.map