import type { NoiseReductionEffectOptions, VirtualBackgroundEffectOptions } from '@webex/media-helpers'; import { Enum } from '../constants'; type INoiseReductionEffect = Omit; type IVirtualBackgroundEffect = Omit; export type { INoiseReductionEffect, IVirtualBackgroundEffect }; export declare const MEETING_KEY: { readonly CONVERSATION_URL: "conversationUrl"; readonly SIP_URI: "sipUri"; readonly LOCUS_URL: "locusUrl"; readonly MEETINGNUMBER: "meetingNumber"; readonly CORRELATION_ID: "correlationId"; }; export type MEETING_KEY = Enum; export type MeetingRegistrationStatus = { fetchWebexSite: boolean; getGeoHint: boolean; startReachability: boolean; deviceRegister: boolean; mercuryConnect: boolean; checkH264Support: boolean; };