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