export interface CodeActApiResponse { success: boolean; value?: unknown; logs?: string[]; error?: string; errorCode?: string; terminalCode?: string; retryable?: boolean; abort?: boolean; metrics?: { durationMs: number; hostCallCount: number; memoryUsedBytes: number; }; hostToolExecutions?: Array<{ name: string; success: boolean; code?: string; }>; hostToolsInvoked?: string[]; toolCalls?: { name: string; input: Record; }[]; } export declare function callCodeActAPI(body: Record, options: { port: number; authToken?: string; timeoutMs: number; }): Promise; //# sourceMappingURL=code-act-api-client.d.ts.map