import { CompareDirective } from './CompareDirective'; import { DirectiveRequest, MatchResult, MatchContext } from '../core/types'; /** * EndsWith directive for string pattern matching * * Validates that a string ends with a specific pattern * * Example: {{compare:endsWith:@example.com}} */ export declare class EndsWithDirective implements CompareDirective { readonly name = "endsWith"; createMatcher(request: DirectiveRequest): (actual: any, _expected: any, _context: MatchContext) => MatchResult; } //# sourceMappingURL=EndsWithDirective.d.ts.map