import type { BaseClient } from '@sentry/core'; import type { Client } from '@sentry/types'; import type { OpenTelemetryClient as OpenTelemetryClientInterface } from '../types'; /** * Wrap an Client with things we need for OpenTelemetry support. * * Usage: * const OpenTelemetryClient = getWrappedClientClass(NodeClient); * const client = new OpenTelemetryClient(options); */ export declare function wrapClientClass Client & BaseClient, WrappedClassConstructor extends new (...args: any[]) => Client & BaseClient & OpenTelemetryClientInterface>(ClientClass: ClassConstructor): WrappedClassConstructor; //# sourceMappingURL=client.d.ts.map