import type { RuleConverterPlugin } from './RuleConverterInterface.js'; /** * Stores all the rule converter plugins */ export declare class RuleConverterRegistry { private converters; register(converter: RuleConverterPlugin): void; get(name: string): RuleConverterPlugin | undefined; has(name: string): boolean; names(): string[]; } //# sourceMappingURL=RuleConverterRegistry.d.ts.map