import { TransformableReadableStream } from "src/utils/stream-utils.js"; export interface Transport { send(url: string, data?: Record, options?: Omit): Promise<{ response: Promise; readableStream: TransformableReadableStream | null; }>; transportUrl: () => string | URL; close(): void; } //# sourceMappingURL=transport.d.ts.map