import { ruleCreator } from "../_internal/rule-creator.js"; type MessageIds = "focusedTest" | "forbiddenFunction"; type Options = readonly [RuleOptions]; type RuleOptions = Readonly<{ readonly block?: readonly string[]; readonly fix?: boolean; readonly focus?: readonly string[]; readonly functions?: readonly string[]; }>; /** * Disallow focused test invocations such as `test.only(...)`. */ declare const rule: ReturnType>; export default rule; //# sourceMappingURL=no-only-tests.d.ts.map