import type { SentryErrorEvent, SentryEvent, SentryLogEvent, SentryProfileV1Event, SentryTransactionEvent } from "./types.js"; export declare const ERROR_EVENT_TYPES: Set; export declare const TRACE_EVENT_TYPES: Set; export declare const PROFILE_EVENT_TYPES: Set; export declare const LOG_EVENT_TYPES: Set; export declare const SUPPORTED_EVENT_TYPES: Set; export declare function isErrorEvent(event: SentryEvent): event is SentryErrorEvent; export declare function isProfileEvent(event: SentryEvent): event is SentryProfileV1Event; export declare function isTraceEvent(event: SentryEvent): event is SentryTransactionEvent; export declare function isLogEvent(event: SentryEvent): event is SentryLogEvent;