interface ParsedArgs { workspaceRoot?: string; project?: string; epic?: string; story?: string; status?: string[]; agentName?: string; agentStream?: boolean; rateAgents: boolean; inferDeps: boolean; apply: boolean; planningContextPolicy: "best_effort" | "require_any" | "require_sds_or_openapi"; stageOrder?: string[]; json: boolean; } type ProjectKeyCandidate = { key: string; createdAt?: string | null; }; export declare const pickOrderTasksProjectKey: (options: { requestedKey?: string; configuredKey?: string; existing: ProjectKeyCandidate[]; }) => { projectKey?: string; warnings: string[]; }; export declare const parseOrderTasksArgs: (argv: string[]) => ParsedArgs; export declare class OrderTasksCommand { static run(argv: string[]): Promise; } export {}; //# sourceMappingURL=OrderTasksCommand.d.ts.map