import { type HttpRequestArgs, type HttpRequestResult } from './schemas/http-request'; /** * Performs an HTTP request from a Juno serverless function. * * @param {HttpRequestArgs} args - The HTTP request parameters * @returns {Promise} A promise resolving to the HTTP response. * @throws {ZodError} If the provided arguments do not match the expected schema. * @throws {Error} If the HTTP request fails. */ export declare const httpRequest: (args: HttpRequestArgs) => Promise;