import React, { FC } from "react";
import "./ActiveChats.scss";
interface ActiveChatsProps {
    setCreateConversation: React.Dispatch<React.SetStateAction<boolean>>;
    cbHandleCloseChatList?: () => void;
    isOnlyChatList?: boolean;
    classList?: string;
    user_locale?: string;
    cbHandleOpenChat?: (chat_information: {
        chat_id: string;
        opponent_id: string;
    }) => void;
}
declare const ActiveChats: FC<ActiveChatsProps>;
export default ActiveChats;
