interface ParsedArgs { workspaceRoot?: string; projectKey?: string; agentName?: string; agentStream: boolean; rateAgents: boolean; force: boolean; maxEpics?: number; maxStoriesPerEpic?: number; maxTasksPerStory?: number; quiet?: boolean; qaProfiles?: string[]; qaEntryUrl?: string; qaStartCommand?: string; qaRequires?: string[]; sdsPreflightApplyToSds: boolean; sdsPreflightCommit: boolean; sdsPreflightCommitMessage?: string; unknownEpicServicePolicy?: "auto-remediate" | "fail"; inputs: string[]; } type ProjectKeyCandidate = { key: string; mtimeMs: number; }; export declare const createTasksUsage: string; export declare const pickCreateTasksProjectKey: (options: { requestedKey?: string; configuredKey?: string; derivedKey: string; existing: ProjectKeyCandidate[]; }) => { projectKey: string; warnings: string[]; }; export declare const parseCreateTasksArgs: (argv: string[]) => ParsedArgs; export declare class CreateTasksCommand { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=CreateTasksCommand.d.ts.map