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