@droppii-org/chat-sdk
Version:
Droppii React Chat SDK
17 lines • 662 B
TypeScript
import { SessionStatus, SessionTag } from "../../types/chat";
import { ISessionByStatus } from "../../store/type";
interface MessageHeaderProps {
onClose?: () => void;
currentSession?: ISessionByStatus;
}
type SelectSessionValueType = SessionStatus | SessionTag;
export interface SelectSessionOption {
label: string;
value: SelectSessionValueType;
tintColorClassname: string;
tintColorClassnameBg: string;
bgTintColorClassname: string;
}
declare const MessageHeader: ({ onClose, currentSession }: MessageHeaderProps) => import("react/jsx-runtime").JSX.Element;
export default MessageHeader;
//# sourceMappingURL=MessageHeader.d.ts.map