/** * E2E Test Runner - Validate Command * * Validates test files without executing them */ import type { CLIArgs } from '../types'; export interface ValidationResult { file: string; type: 'yaml' | 'typescript' | 'config'; valid: boolean; errors: string[]; } export interface ValidateCommandResult { exitCode: number; results: ValidationResult[]; summary: { total: number; valid: number; invalid: number; }; } /** * Execute the validate command */ export declare function validateCommand(args: CLIArgs): Promise; //# sourceMappingURL=validate.command.d.ts.map