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