import { Payload } from './payload'; import { Response } from './response'; export interface Transport { send(serverUrl: string, payload: Payload): Promise; } export type TransportType = 'xhr' | 'beacon' | 'fetch'; //# sourceMappingURL=transport.d.ts.map