interface SidebarProps { children: React.ReactNode | React.ReactNode[]; logo?: React.ReactNode; className?: string; } export declare function Sidebar({ children, logo, className }: SidebarProps): import("react/jsx-runtime").JSX.Element; interface SidebarSectionProps { children: React.ReactNode | React.ReactNode[]; title?: React.ReactNode; action?: React.ReactNode; isFooter?: boolean; className?: string; } export declare function SidebarSection({ children, title, action, isFooter, className }: SidebarSectionProps): import("react/jsx-runtime").JSX.Element; export declare function SidebarTooltip({ children, text }: { children: React.ReactNode; text?: string; }): import("react/jsx-runtime").JSX.Element; export interface SidebarItemProps { href: string; to?: string; icon?: React.ComponentType>; current?: boolean; onClick?: (event: React.MouseEvent) => void; children: React.ReactNode | React.ReactNode[]; tools?: React.ReactNode; className?: string; id?: string; external?: boolean; replace?: boolean; } export declare function SidebarItem({ external, className, tools, children, icon: Icon, href, to, current, onClick, replace }: SidebarItemProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Sidebar.d.ts.map