export interface RunOptions { historyIndex?: number; prompt?: string; promptDirOverrides?: string[]; skipPromptSelection?: boolean; templateInfo?: { templatePath: string; templateContent: string; variables: Map; finalPrompt: string; title?: string; summary?: string; reviewFiles?: Array<{ name: string; value: unknown; }>; timestamp?: Date; }; isAutoRun?: boolean; promptName?: string; noInteractive?: boolean; noCache?: boolean; } interface ParsedArgs { tool: string | undefined; toolArgs: string[]; extraArgs: string[]; } export declare function parseRunArgs(args: string[]): ParsedArgs; export declare function runCommand(args: string[], options: RunOptions): Promise; export {}; //# sourceMappingURL=run.d.ts.map