declare type IsSupportedFunction = () => Promise<{ supported: boolean; error: SDKUnsupportedReasons | undefined; }>; declare enum SDKUnsupportedReasons { IncompatibleBrowser = "incompatible-browser", ThirdPartyCookiesDisabled = "third-party-cookies-disabled", NoMediaStreamsSupport = "no-media-streams-support" } /** * Check if the client being initialized is compatible with loom features. * @returns Support information */ declare const isSupported: IsSupportedFunction; export { SDKUnsupportedReasons, isSupported };