import * as http from "http"; import { RpcTransportOpts, RpcTransportResponse } from "../runtime/client/index.js"; type NodeHTTPTransport = (url: string, options: RpcTransportOpts & Omit) => Promise; /** * Transport for Node.js environments. * * This overrides `fetch` as the default transport (client.rpcTransport) when TwirpScript * is imported into a Node.js environment. */ export declare const nodeHttpTransport: NodeHTTPTransport; export {};