import { ruleCreator } from "./rule-creator.js"; type CreateSelectorRuleInput = Readonly<{ readonly description: string; readonly message: string; readonly messageId: string; readonly name: string; readonly selector: string; readonly type: "problem" | "suggestion"; readonly url: string; }>; type Options = readonly []; /** * Create a no-options rule that reports every node matching the provided * selector. */ export declare const createSelectorRule: (input: CreateSelectorRuleInput) => ReturnType>; export {}; //# sourceMappingURL=create-selector-rule.d.ts.map