/** * E2E Test Runner - Test Command * * Create new test files from templates */ export type TemplateType = 'api' | 'crud' | 'integration' | 'event-driven' | 'db-verification'; export interface TestCreateOptions { name: string; template: TemplateType; description?: string; output?: string; priority?: string; tags?: string; config?: string; env?: string; verbose?: boolean; quiet?: boolean; noColor?: boolean; } export interface TestCommandResult { exitCode: number; filePath?: string; } /** * Execute the test create command */ export declare function testCreateCommand(options: TestCreateOptions): Promise; /** * List available templates */ export declare function listTemplates(): void; //# sourceMappingURL=test.command.d.ts.map