import { createContext, Dispatch, SetStateAction } from 'react'; interface SidebarContextType { toggleSidebar: boolean; setToggleSidebar: Dispatch>; sidebarWidth?: number; } export const SidebarContext = createContext>({});