import { CompareDirective } from './CompareDirective'; import { DirectiveRequest, MatchResult, MatchContext } from '../core/types'; /** * Regex directive for string pattern matching * * Validates that a string matches a regular expression * * Example: {{compare:regex:user_\d{5}}} */ export declare class RegexDirective implements CompareDirective { readonly name = "regex"; createMatcher(request: DirectiveRequest): (actual: any, _expected: any, _context: MatchContext) => MatchResult; } //# sourceMappingURL=RegexDirective.d.ts.map