cindy-ai-chatbot
Version:
An AI-powered chatbot component for React applications
13 lines (12 loc) • 350 B
TypeScript
import React from 'react';
interface SidebarProps {
children: React.ReactNode;
defaultExpanded?: boolean;
expandedWidth?: string;
collapsedWidth?: string;
className?: string;
isExpanded: boolean;
setIsExpanded: (isExpanded: boolean) => void;
}
export declare const Sidebar: React.FC<SidebarProps>;
export default Sidebar;