import { ToolCallChatResponseContentImpl } from '@theia/ai-chat/lib/common'; import { ToolCallResult } from '@theia/ai-core'; export declare class CodexToolCallChatResponseContent extends ToolCallChatResponseContentImpl { static readonly type = "codex-tool-call"; constructor(id?: string, name?: string, arg_string?: string, finished?: boolean, result?: ToolCallResult); static is(content: unknown): content is CodexToolCallChatResponseContent; update(args?: string, finished?: boolean, result?: ToolCallResult): void; } //# sourceMappingURL=codex-tool-call-content.d.ts.map