import { NativeModule, requireNativeModule } from 'expo-modules-core'; export type BitmovinCastManagerModuleEvents = Record; declare class BitmovinCastManagerModule extends NativeModule { isInitialized(): Promise; sendMessage(message: string, messageNamespace?: string): Promise; updateContext?(): Promise; // Android only } export default requireNativeModule( 'BitmovinCastManagerModule' );