type ChatTitleBarProps = { showTitle?: boolean; isFullPage?: boolean; title?: string; titleAvatarSrc?: string; titleBackgroundColor?: string; titleTextColor?: string; bubbleBackgroundColor?: string; bubbleTextColor?: string; messagesCount: number; historyOpen: boolean; /** Feature switches; both default to on. */ newChatEnabled?: boolean; historyEnabled?: boolean; onClearChat: () => void; onToggleHistory: () => void; }; export declare const ChatTitleBar: (props: ChatTitleBarProps) => import("solid-js").JSX.Element; export {};