/** * Match the bounded, non-branching subset needed by common property prefixes and character classes. * JavaScript regexes cannot be interrupted, so arbitrary schema expressions must not run on the UI * thread or mock-server event loop. Unsupported expressions are reported rather than guessed. * With groups, alternation, backreferences, and multiple quantifiers excluded, repetitions * cannot interact to create exponential backtracking. The single quantified atom may * still backtrack or restart matching, so both pattern and input lengths are bounded. */ export declare const matchXmlPropertyPattern: (pattern: string, name: string) => boolean | undefined; //# sourceMappingURL=match-xml-property-pattern.d.ts.map