import type { BrowserOptions, makeFetchTransport } from '@sentry/browser'; import type { CapacitorOptions } from './options'; type BrowserTransportOptions = Parameters[0]; type TransportFactory = (transportOptions: BrowserTransportOptions) => ReturnType; /** * Initializes the Sibling and Native Sentry SDKs. * @param browserOptions - The browser options to use for the sibling SDK. * @param nativeOptions - The native options to use for the native SDK. * @param originalInit - The original init function to use for the sibling SDK. * @param customTransport - The custom transport to use. */ export declare function sdkInit(browserOptions: BrowserOptions, nativeOptions: CapacitorOptions, originalInit: (passedOptions: BrowserOptions) => void, customTransport?: TransportFactory): void; export {}; //# sourceMappingURL=client.d.ts.map