/** * E2E Test Runner - CLI Parser * * Parses command line arguments and routes to appropriate commands */ import type { CLIArgs, CLICommand } from '../types'; declare const VERSION = "1.0.0"; declare const VALID_COMMANDS: CLICommand[]; /** * Parse command line arguments */ export declare function parseArgs(argv?: string[]): CLIArgs; /** * Print help message */ export declare function printHelp(): void; /** * Print version */ export declare function printVersion(): void; /** * Print error message */ export declare function printError(message: string, hint?: string): void; /** * Print success message */ export declare function printSuccess(message: string): void; /** * Validate CLI arguments */ export declare function validateArgs(args: CLIArgs): { valid: boolean; errors: string[]; }; export { VALID_COMMANDS, VERSION }; //# sourceMappingURL=index.d.ts.map