//#region src/types.d.ts /** OTLP configuration returned by sentryOtlpConfig(). */ interface SentryOtlpConfig { /** The normalized DSN string (for Sentry.init). */ dsn: string; /** OTLP base endpoint (autotel appends /v1/traces). */ endpoint: string; /** Auth headers for OTLP requests. */ headers: Record; } //#endregion //#region src/config.d.ts /** * Build OTLP export configuration from a Sentry DSN. * * Returns the normalized DSN (for Sentry.init), the OTLP base endpoint * (autotel appends /v1/traces), and the auth header. */ declare function sentryOtlpConfig(rawDsn: string): SentryOtlpConfig; //#endregion export { type SentryOtlpConfig, sentryOtlpConfig };