import ' rollup-plugin-inject-process-env';
import { AsyncActionType } from "../store/actions/types";
import { ChatServer } from "../xapp/ChatServer";
export type ChatServerAsyncActionType = (chatServer: ChatServer) => AsyncActionType;
export type ChatServerDispatch = (action: ChatServerAsyncActionType) => void;
export declare function useChatServerDispatch(): ChatServerDispatch;
