export { ChatSidebar }; interface ChatSidebarProps { assistant: string; logoSrc: string; sidebarImageSrc: string; assistantAvatarSrc: string; } function ChatSidebar({ assistant, logoSrc, sidebarImageSrc, assistantAvatarSrc, }: ChatSidebarProps) { return ( <> ); }