/** * E2E Test Runner - Init Command * * Initialize E2E test configuration and example files */ import type { CLIArgs } from '../types'; export interface InitCommandResult { exitCode: number; filesCreated: string[]; directoriesCreated: string[]; } /** * Execute the init command */ export declare function initCommand(args: CLIArgs): Promise; //# sourceMappingURL=init.command.d.ts.map