import { type DataRef, type Rule, type RuleTestResponse } from '@os-team/lexical-rules'; /** * The string in any quotes. */ declare class AnyQuotedRule implements Rule { private readonly rule; constructor(rule: Rule); test(ref: DataRef, pos: number): RuleTestResponse; } export default AnyQuotedRule; //# sourceMappingURL=AnyQuotedRule.d.ts.map