import type { z } from "zod"; interface HubRequest { origin: string; path: string; method: "GET" | "POST"; apiKey?: string; body?: unknown; successStatus: number; schema: z.ZodType; timeoutMilliseconds?: number; failureMessage: string; } export declare function requestHub(input: HubRequest): Promise; export {}; //# sourceMappingURL=transport.d.ts.map