import type { ThemingProps } from "../../types"; import type { SidebarTheme } from "./Sidebar"; export interface SidebarContextValue extends ThemingProps { isCollapsed: boolean; } export declare const SidebarContext: import("react").Context; export declare function useSidebarContext(): SidebarContextValue;