/** * E2E Test Runner - List Command * * List discovered tests with filtering options */ import type { CLIArgs, TestPriority } from '../types'; export interface TestInfo { name: string; file: string; type: 'yaml' | 'typescript'; priority?: TestPriority; tags: string[]; skip: boolean; skipReason?: string; } export interface ListCommandResult { exitCode: number; tests: TestInfo[]; } /** * Execute the list command */ export declare function listCommand(args: CLIArgs): Promise; //# sourceMappingURL=list.command.d.ts.map