import { HttpAgent, type RunAgentInput } from '@ag-ui/client'; import type { PlatformEnvironment } from '../../../../../utils/url-utils.js'; /** * Custom HTTP Agent for answer requests */ export declare class AnswerAgent extends HttpAgent { protected requestInit(input: RunAgentInput): RequestInit; } export declare const createAnswerAgent: (agentId: string, organizationId: string, env: PlatformEnvironment) => AnswerAgent;