import { type VariantProps } from 'class-variance-authority'; import * as React from 'react'; import { Button } from './button'; import { Input } from './input'; import { Separator } from './separator'; import { TooltipContent } from './tooltip'; interface SidebarContextProps { state: 'expanded' | 'collapsed'; open: boolean; setOpen: (open: boolean) => void; openMobile: boolean; setOpenMobile: (open: boolean) => void; isMobile: boolean; toggleSidebar: () => void; } declare function useSidebar(): SidebarContextProps; declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React.ComponentPropsWithoutRef<'div'> & { defaultOpen?: boolean; open?: boolean; onOpenChange?: (open: boolean) => void; }): import("react/jsx-runtime").JSX.Element; declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React.ComponentPropsWithoutRef<'div'> & { side?: 'left' | 'right'; variant?: 'sidebar' | 'floating' | 'inset'; collapsible?: 'offcanvas' | 'icon' | 'none'; }): import("react/jsx-runtime").JSX.Element; declare function SidebarTrigger({ className, onClick, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SidebarRail({ className, ...props }: React.ComponentPropsWithoutRef<'button'>): import("react/jsx-runtime").JSX.Element; declare function SidebarInset({ className, ...props }: React.ComponentPropsWithoutRef<'main'>): import("react/jsx-runtime").JSX.Element; declare function SidebarInput({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SidebarHeader({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarFooter({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarSeparator({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; declare function SidebarContent({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarGroup({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarGroupLabel({ className, asChild, ...props }: React.ComponentPropsWithoutRef<'div'> & { asChild?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function SidebarGroupAction({ className, asChild, ...props }: React.ComponentPropsWithoutRef<'button'> & { asChild?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function SidebarGroupContent({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarMenu({ className, ...props }: React.ComponentPropsWithoutRef<'ul'>): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuItem({ className, ...props }: React.ComponentPropsWithoutRef<'li'>): import("react/jsx-runtime").JSX.Element; declare const sidebarMenuButtonVariants: (props?: ({ variant?: "default" | "outline" | null | undefined; size?: "default" | "sm" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React.ComponentPropsWithoutRef<'button'> & { asChild?: boolean; isActive?: boolean; tooltip?: string | React.ComponentProps; } & VariantProps): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React.ComponentPropsWithoutRef<'button'> & { asChild?: boolean; showOnHover?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuBadge({ className, ...props }: React.ComponentPropsWithoutRef<'div'>): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React.ComponentPropsWithoutRef<'div'> & { showIcon?: boolean; }): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuSub({ className, ...props }: React.ComponentPropsWithoutRef<'ul'>): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuSubItem({ className, ...props }: React.ComponentPropsWithoutRef<'li'>): import("react/jsx-runtime").JSX.Element; declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React.ComponentPropsWithoutRef<'a'> & { asChild?: boolean; size?: 'sm' | 'md'; isActive?: boolean; }): import("react/jsx-runtime").JSX.Element; 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, };