import * as class_variance_authority_types from 'class-variance-authority/types'; import * as TooltipPrimitive from '@radix-ui/react-tooltip'; import * as SeparatorPrimitive from '@radix-ui/react-separator'; import { ButtonProps } from '../button/index.mjs'; import { VariantProps } from 'class-variance-authority'; import * as React from 'react'; type SidebarContext = { state: "expanded" | "collapsed"; open: boolean; setOpen: (open: boolean) => void; openMobile: boolean; setOpenMobile: (open: boolean) => void; isMobile: boolean; toggleSidebar: () => void; }; declare const SidebarContext: React.Context; declare function useSidebar(): SidebarContext; declare const SidebarProvider: React.ForwardRefExoticComponent & React.HTMLAttributes & { defaultOpen?: boolean | undefined; open?: boolean | undefined; onOpenChange?: ((open: boolean) => void) | undefined; }, "ref"> & React.RefAttributes>; declare const Sidebar: React.ForwardRefExoticComponent & React.HTMLAttributes & { side?: "left" | "right" | undefined; variant?: "sidebar" | "floating" | "inset" | undefined; collapsible?: "none" | "icon" | "offcanvas" | undefined; }, "ref"> & React.RefAttributes>; declare const SidebarTrigger: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; declare const SidebarRail: React.ForwardRefExoticComponent, HTMLButtonElement>, "ref"> & React.RefAttributes>; declare const SidebarInset: React.ForwardRefExoticComponent, HTMLElement>, "ref"> & React.RefAttributes>; declare const SidebarInput: React.ForwardRefExoticComponent, HTMLInputElement>, "ref"> & React.RefAttributes, "ref"> & React.RefAttributes>; declare const SidebarHeader: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarFooter: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarSeparator: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes, "ref"> & React.RefAttributes>; declare const SidebarContent: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarGroup: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarGroupLabel: React.ForwardRefExoticComponent & React.HTMLAttributes & { asChild?: boolean | undefined; }, "ref"> & React.RefAttributes>; declare const SidebarGroupAction: React.ForwardRefExoticComponent & React.ButtonHTMLAttributes & { asChild?: boolean | undefined; }, "ref"> & React.RefAttributes>; declare const SidebarGroupContent: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarMenu: React.ForwardRefExoticComponent, HTMLUListElement>, "ref"> & React.RefAttributes>; declare const SidebarMenuItem: React.ForwardRefExoticComponent, HTMLLIElement>, "ref"> & React.RefAttributes>; declare const SidebarMenuButton: React.ForwardRefExoticComponent & React.ButtonHTMLAttributes & { asChild?: boolean | undefined; isActive?: boolean | undefined; tooltip?: string | (Omit, "ref"> & React.RefAttributes) | undefined; } & VariantProps<(props?: ({ variant?: "default" | "outline" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; } & class_variance_authority_types.ClassProp) | undefined) => string>, "ref"> & React.RefAttributes>; declare const SidebarMenuAction: React.ForwardRefExoticComponent & React.ButtonHTMLAttributes & { asChild?: boolean | undefined; showOnHover?: boolean | undefined; }, "ref"> & React.RefAttributes>; declare const SidebarMenuBadge: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent & React.HTMLAttributes & { showIcon?: boolean | undefined; }, "ref"> & React.RefAttributes>; declare const SidebarMenuSub: React.ForwardRefExoticComponent, HTMLUListElement>, "ref"> & React.RefAttributes>; declare const SidebarMenuSubItem: React.ForwardRefExoticComponent, HTMLLIElement>, "ref"> & React.RefAttributes>; declare const SidebarMenuSubButton: React.ForwardRefExoticComponent & React.AnchorHTMLAttributes & { asChild?: boolean | undefined; size?: "sm" | "md" | undefined; isActive?: boolean | undefined; }, "ref"> & React.RefAttributes>; export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar };