import { RNKeyProvider } from '..'; import type { RNKeyProviderOptions } from '../e2ee/RNKeyProvider'; import type { BaseE2EEManager } from 'livekit-client'; export type UseRNE2EEManagerOptions = { keyProviderOptions?: RNKeyProviderOptions; sharedKey: string | Uint8Array; }; export interface RNE2EEManagerState { keyProvider: RNKeyProvider; e2eeManager: BaseE2EEManager; } /** * @experimental */ export declare function useRNE2EEManager(options: UseRNE2EEManagerOptions): RNE2EEManagerState; //# sourceMappingURL=useE2EEManager.d.ts.map