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