export interface ParsedPdrArgs { workspaceRoot?: string; projectKey?: string; rfpId?: string; rfpPath?: string; outPath?: string; agentName?: string; agentStream: boolean; rateAgents: boolean; fast: boolean; iterate: boolean; quality?: string; buildReady: boolean; resolveOpenQuestions: boolean; noPlaceholders: boolean; noMaybes: boolean; crossAlign: boolean; dryRun: boolean; json: boolean; quiet: boolean; debug: boolean; noColor: boolean; noTelemetry: boolean; } export interface ParsedSdsArgs { workspaceRoot?: string; projectKey?: string; outPath?: string; agentName?: string; templateName?: string; agentStream: boolean; rateAgents: boolean; fast: boolean; iterate: boolean; quality?: string; buildReady: boolean; resolveOpenQuestions: boolean; noPlaceholders: boolean; noMaybes: boolean; crossAlign: boolean; force: boolean; resumeJobId?: string; dryRun: boolean; json: boolean; quiet: boolean; debug: boolean; noColor: boolean; noTelemetry: boolean; } export interface ParsedSdsSuggestionsArgs { workspaceRoot?: string; projectKey?: string; sdsPath?: string; reviewAgentName?: string; fixAgentName?: string; agentStream: boolean; rateAgents: boolean; maxIterations: number; dryRun: boolean; json: boolean; quiet: boolean; debug: boolean; noColor: boolean; noTelemetry: boolean; } export declare const parsePdrArgs: (argv: string[]) => ParsedPdrArgs; export declare const parseSdsArgs: (argv: string[]) => ParsedSdsArgs; export declare const parseSdsSuggestionsArgs: (argv: string[]) => ParsedSdsSuggestionsArgs; export declare class DocsCommands { static run(argv: string[]): Promise; } //# sourceMappingURL=DocsCommands.d.ts.map