import { FC } from "react";
import { IChatItem } from "@api/chatApi";
import "moment/locale/ru";
import "./ActiveChatUser.scss";
interface ActiveChatUserProps {
    activeChat?: boolean;
    chatInformation: IChatItem;
    cbHandleActiveChat: (chatInformation: IChatItem) => void;
    user_locale?: string;
}
declare const ActiveChatUser: FC<ActiveChatUserProps>;
export default ActiveChatUser;
