import type { OtlpHttpConfiguration } from './configuration/otlp-http-configuration'; import type { ISerializer } from '@opentelemetry/otlp-transformer'; import type { IOtlpExportDelegate } from './otlp-export-delegate'; export declare function createOtlpFetchExportDelegate(options: OtlpHttpConfiguration, serializer: ISerializer): IOtlpExportDelegate; /** * @deprecated Use {@link createOtlpFetchExportDelegate} instead. Modern browsers use `fetch` with `keepAlive: true` when `sendBeacon` is used. Use a `fetch` polyfill that mimics this behavior to keep using `sendBeacon`. */ export declare function createOtlpSendBeaconExportDelegate(options: OtlpHttpConfiguration, serializer: ISerializer): IOtlpExportDelegate; //# sourceMappingURL=otlp-browser-http-export-delegate.d.ts.map