export interface TransportResponse { statusCode: number; body: Uint8Array; } export interface Transport { send(data: Uint8Array): Promise; } export declare class HttpTransport implements Transport { private readonly _url; private readonly _httpModule; private readonly _accessToken?; constructor(endpoint: string, accessToken?: string); send(data: Uint8Array): Promise; } //# sourceMappingURL=HttpTransport.d.ts.map