import type { ErrorEvent } from "@sentry/core"; export declare const envelopeReactClientSideError: ErrorEvent; export declare const envelopeFetchRequestError: ErrorEvent; export declare const envelopeTransactionEvent: { event_id: string; type: string; transaction: string; timestamp: number; start_timestamp: number; platform: string; contexts: { trace: { trace_id: string; span_id: string; parent_span_id: string; }; }; spans: ({ span_id: string; parent_span_id: string; trace_id: string; op: string; description: string; start_timestamp: number; timestamp: number; duration: number; status: string; data: { "db.statement": string; "db.system": string; "http.method"?: undefined; "http.url"?: undefined; "http.status_code"?: undefined; }; } | { span_id: string; parent_span_id: string; trace_id: string; op: string; description: string; start_timestamp: number; timestamp: number; duration: number; status: string; data: { "http.method": string; "http.url": string; "http.status_code": number; "db.statement"?: undefined; "db.system"?: undefined; }; })[]; sdk: { name: string; version: string; }; }; export declare const envelopeSecondTransactionEvent: { event_id: string; type: string; transaction: string; timestamp: number; start_timestamp: number; platform: string; contexts: { trace: { trace_id: string; span_id: string; parent_span_id: undefined; }; }; spans: { span_id: string; parent_span_id: string; trace_id: string; op: string; description: string; start_timestamp: number; timestamp: number; duration: number; status: string; }[]; sdk: { name: string; version: string; }; };