import * as React from "react"; interface SidebarProps extends React.HTMLAttributes { collapsed?: boolean; } declare const Sidebar: React.ForwardRefExoticComponent>; declare const SidebarHeader: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarHeaderTitle: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarHeaderDescription: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarNav: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarNavItem: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarNavLink: React.ForwardRefExoticComponent & { isActive?: boolean; } & React.RefAttributes>; interface SidebarNavButtonProps { isActive?: boolean; href?: string; children: React.ReactNode; className?: string; } declare const SidebarNavButton: React.ForwardRefExoticComponent>; declare const SidebarFooter: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarGroup: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarGroupLabel: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarGroupContent: React.ForwardRefExoticComponent & React.RefAttributes>; interface SidebarCollapsibleProps extends React.HTMLAttributes { open?: boolean; onOpenChange?: (open: boolean) => void; } declare const SidebarCollapsible: React.ForwardRefExoticComponent>; declare const SidebarCollapsibleTrigger: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarCollapsibleContent: React.ForwardRefExoticComponent & React.RefAttributes>; declare const SidebarInset: React.ForwardRefExoticComponent & React.RefAttributes>; interface SidebarTriggerProps extends React.ButtonHTMLAttributes { collapsed?: boolean; onCollapsedChange?: (collapsed: boolean) => void; } declare const SidebarTrigger: React.ForwardRefExoticComponent>; interface SidebarProviderProps extends React.HTMLAttributes { collapsed?: boolean; onCollapsedChange?: (collapsed: boolean) => void; } declare const SidebarProvider: React.ForwardRefExoticComponent>; export { Sidebar, SidebarHeader, SidebarHeaderTitle, SidebarHeaderDescription, SidebarNav, SidebarNavItem, SidebarNavLink, SidebarNavButton, SidebarFooter, SidebarGroup, SidebarGroupLabel, SidebarGroupContent, SidebarCollapsible, SidebarCollapsibleTrigger, SidebarCollapsibleContent, SidebarInset, SidebarTrigger, SidebarProvider, }; //# sourceMappingURL=sidebar.d.ts.map