import type { CompiledServiceInfo, CompileUrlResult, DriverConfig, ResponseFormat } from "../types/driver"; /** * Executes one request through the Fetch API and normalizes the result. * Distinct from the stream transports: it always defaults Content-Type to * application/json, encodes the body via compileBodyFetchWithContentType, and * drops the header object for multipart so the platform sets the boundary. */ export declare function executeFetchCall(config: DriverConfig, apiInfo: CompileUrlResult, serviceInfo: CompiledServiceInfo, options?: Record): Promise>;