import type { CharRuleConfig } from '@os-team/lexical-rules'; import NameStartCharRule from './NameStartCharRule.js'; /** * Any character of a name except the first one. * See https://www.w3.org/TR/xml/#NT-NameChar */ declare class NameCharRule extends NameStartCharRule { constructor(config?: CharRuleConfig); } export default NameCharRule; //# sourceMappingURL=NameCharRule.d.ts.map