export { makeHttpRequest }; declare function makeHttpRequest(callContext: { telefuncUrl: string; httpRequestBody: string | FormData; telefunctionName: string; telefuncFilePath: string; httpHeaders: Record | null; fetch: typeof globalThis.fetch | null; }): Promise<{ telefunctionReturn: unknown; }>;