import DyteClient from '@dytesdk/web-core'; /** * Hook which manages a DyteClient instance */ export declare const useDyteClient: () => [DyteClient | undefined, (options: any) => {}]; type StateSelector = (state: T) => U; /** * Hook which extracts data from the DyteClient object */ export declare const useDyteSelector: (selector: StateSelector) => StateSlice; export * from './ReactContext';