import React, { FC } from "react";
import { IChatInformation } from "@api/chatApi";
import "./ExtendedChatHeader.scss";
interface ExtendedChatHeaderProps {
    setIsActiveEdit: React.Dispatch<React.SetStateAction<boolean>>;
    isActiveEdit: boolean;
    selectedMessages: number;
    cbHandleCloseChat?: () => void;
    isOnlyChat?: boolean;
    chatInformation?: IChatInformation;
    isOnlineOpponent: boolean;
}
declare const ExtendedChatHeader: FC<ExtendedChatHeaderProps>;
export default ExtendedChatHeader;
