import { type DataRef, type Rule, type RuleTestResponse } from '@os-team/lexical-rules'; export type Quantifier = '?' | '*' | '+' | undefined; declare class QuantifierRule implements Rule { private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; } export default QuantifierRule; //# sourceMappingURL=QuantifierRule.d.ts.map