import RTKClient, { RTKConfigOptions } from '@cloudflare/realtimekit'; interface RealtimeKitClientParams { resetOnLeave?: boolean; } /** * Hook which manages a RealtimeKitClient instance */ export declare const useRealtimeKitClient: (clientParams?: RealtimeKitClientParams) => readonly [RTKClient | undefined, (options: RTKConfigOptions) => Promise]; type StateSelector = (state: T) => U; /** * Hook which extracts data from the RealtimeKitClient object */ export declare const useRealtimeKitSelector: (selector: StateSelector) => StateSlice; export * from './context';