UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

19 lines (18 loc) 575 B
import { default as React } from 'react'; type SidebarContextType = { isExpanded: boolean; isMobileOpen: boolean; isHovered: boolean; activeItem: string | null; openSubmenu: string | null; toggleSidebar: () => void; toggleMobileSidebar: () => void; setIsHovered: (isHovered: boolean) => void; setActiveItem: (item: string | null) => void; toggleSubmenu: (item: string) => void; }; export declare const useSidebar: () => SidebarContextType; export declare const SidebarProvider: React.FC<{ children: React.ReactNode; }>; export {};