interface ParsedArgs { workspaceRoot?: string; projectKey?: string; epicKey?: string; storyKey?: string; taskKeys: string[]; statusFilter: string[]; limit?: number; noCommit: boolean; dryRun: boolean; baseBranch?: string; json: boolean; } type ProjectKeyCandidate = { key: string; createdAt?: string | null; }; export declare const pickAddTestsProjectKey: (options: { requestedKey?: string; configuredKey?: string; existing: ProjectKeyCandidate[]; }) => { projectKey?: string; warnings: string[]; }; export declare const parseAddTestsArgs: (argv: string[]) => ParsedArgs; export declare class AddTestsCommand { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=AddTestsCommand.d.ts.map