import type { ErrorInfo } from 'react'; export { setSentryCorrelationId } from './correlationTagBridge.js'; export type SentryAppName = 'admin' | 'kiosk' | 'customer' | 'pickup'; export interface InitSentryOptions { readonly dsn?: string; readonly environment?: string; readonly release?: string; readonly app: SentryAppName; readonly isProd: boolean; } /** Whether {@link initSentry} completed successfully (prod + DSN). */ export declare function isSentryInitialized(): boolean; export declare function initSentry(options: InitSentryOptions): void; export declare function captureException(error: unknown, context?: Record): void; export declare function captureBoundaryError(error: Error, errorInfo: ErrorInfo): void; //# sourceMappingURL=initSentry.d.ts.map