/** * @public * @enum */ export declare const Telemetry: { /** * Includes JS error event plugin */ readonly ERRORS: "errors"; /** * Includes X-Ray Xhr and X-Ray Fetch plugin */ readonly HTTP: "http"; /** * Includes navigation, paint, resource and web vital event plugins */ readonly PERFORMANCE: "performance"; }; /** * @public */ export type Telemetry = (typeof Telemetry)[keyof typeof Telemetry]; /** * @public * @enum */ export declare const CustomEventsStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type CustomEventsStatus = (typeof CustomEventsStatus)[keyof typeof CustomEventsStatus]; /** * @public * @enum */ export declare const DeobfuscationStatus: { readonly DISABLED: "DISABLED"; readonly ENABLED: "ENABLED"; }; /** * @public */ export type DeobfuscationStatus = (typeof DeobfuscationStatus)[keyof typeof DeobfuscationStatus]; /** * @public * @enum */ export declare const AppMonitorPlatform: { readonly ANDROID: "Android"; readonly IOS: "iOS"; readonly WEB: "Web"; }; /** * @public */ export type AppMonitorPlatform = (typeof AppMonitorPlatform)[keyof typeof AppMonitorPlatform]; /** * @public * @enum */ export declare const StateEnum: { readonly ACTIVE: "ACTIVE"; readonly CREATED: "CREATED"; readonly DELETING: "DELETING"; }; /** * @public */ export type StateEnum = (typeof StateEnum)[keyof typeof StateEnum]; /** * @public * @enum */ export declare const MetricDestination: { readonly CloudWatch: "CloudWatch"; readonly Evidently: "Evidently"; }; /** * @public */ export type MetricDestination = (typeof MetricDestination)[keyof typeof MetricDestination];