import { type DataRef, type Rule, type RuleTestResponse } from '@os-team/lexical-rules'; /** * The entity reference. * See https://www.w3.org/TR/xml/#NT-EntityRef */ declare class EntityRefRule implements Rule { private readonly rule; constructor(); test(ref: DataRef, pos: number): RuleTestResponse; } export default EntityRefRule; //# sourceMappingURL=EntityRefRule.d.ts.map