import { type RefObject } from 'react'; type SidebarContextValue = { action: (state: boolean) => void; collapsed: boolean; sidebarId: string; state: boolean; toggleRef: RefObject; }; declare const SidebarContext: import("react").Context; declare function useSidebarContext(componentName: string): SidebarContextValue; export { SidebarContext, useSidebarContext };