/**
 * Utility hook which provides access to client's state store.
 */
export declare const useStore: () => import("@stream-io/video-client").StreamVideoReadOnlyStateStore;
/**
 * Utility hook which provides a list of all notifications about created calls.
 * In the ring call settings, these calls can be outgoing (I have called somebody)
 * or incoming (somebody has called me).
 */
export declare const useCalls: () => import("@stream-io/video-client").Call[];
/**
 * Returns the current connected user.
 */
export declare const useConnectedUser: () => import("@stream-io/video-client").OwnUserResponse | undefined;
