import Rule from "./Rule"; import IRuleExporter from "./IRuleExporter"; export default class RuleService { private exporters; constructor(); addExporter(type: string, exporter: IRuleExporter): this; getExporter(type: string): IRuleExporter; checkExporter(type: string): this; hasExporter(type: string): boolean; export(rules: Rule[], type: string, options?: object): any; convert(rules: object): Rule[]; protected convertRulesSub(rr: any, prefix: any, prefixMultiple: any): Rule[]; static map(rules: object): Rule[]; } //# sourceMappingURL=RuleService.d.ts.map