import { type ActionEntry } from "../agent/production-agent.js"; export interface ParsedAgentArgs { prompt?: string; engine?: string; model?: string; userEmail?: string; orgId?: string; softTimeoutMs?: number; maxIterations?: number; json: boolean; help: boolean; errors: string[]; } export interface AgentCliIo { stdout?: (text: string) => void; stderr?: (text: string) => void; env?: NodeJS.ProcessEnv; } export declare function parseAgentArgs(args: string[]): ParsedAgentArgs; export declare function runAgent(args: string[], io?: AgentCliIo): Promise; export declare function createHeadlessBuiltinActions(): Promise>; export declare function formatAgentUsage(): string; //# sourceMappingURL=agent.d.ts.map