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