12345
  1. import { IOptions, IRule, RuleConstructor } from "./language/rule/rule";
  2. export declare function loadRules(ruleOptionsList: IOptions[], rulesDirectories?: string | string[], isJs?: boolean): IRule[];
  3. /** @internal private API */
  4. export declare function findRule(name: string, rulesDirectories?: string | string[]): RuleConstructor | undefined;