export interface SentryConfig {
    release: string;
    environment: string;
    dsn: string;
    attachStacktrace: boolean;
}
export declare const initSentry: (config?: Partial<SentryConfig>) => void;
export declare const captureException: (error: unknown) => void;
