export interface ChatState { /** * Indicates whether chat popup is opened */ readonly isOpened: boolean; } /** * Get current chat {@link ChatState state}. * Should be used only after {@link useChat}. */ export declare const useChatState: () => ChatState;