interface ParsedArgs { workspaceRoot?: string; projectKey?: string; taskKeys: string[]; epicKey?: string; storyKey?: string; statusFilter: string[]; limit?: number; mode: "auto" | "manual"; profileName?: string; level?: string; testCommand?: string; agentName?: string; agentStream: boolean; rateAgents: boolean; createFollowupTasks: "auto" | "none" | "prompt"; dependencyPolicy: "enforce" | "ignore"; noChangesPolicy: "require_qa" | "skip" | "manual"; dryRun: boolean; json: boolean; debug: boolean; noTelemetry: boolean; resumeJobId?: string; result?: "pass" | "fail"; notes?: string; evidenceUrl?: string; allowDirty: boolean; cleanIgnorePaths: string[]; quiet?: boolean; } type ProjectKeyCandidate = { key: string; createdAt?: string | null; }; export declare const parseQaTasksArgs: (argv: string[]) => ParsedArgs; export declare const pickQaTasksProjectKey: (options: { requestedKey?: string; configuredKey?: string; existing: ProjectKeyCandidate[]; }) => { projectKey?: string; warnings: string[]; }; export declare class QaTasksCommand { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=QaTasksCommand.d.ts.map