import { type Dispatch, type ReactNode, type SetStateAction } from "react"; export type GeistdocsSidebarMode = "sections" | "tree"; interface GeistdocsSidebarContextValue { isOpen: boolean; setIsOpen: Dispatch>; } export declare const GeistdocsSidebarProvider: ({ children, }: { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const useGeistdocsSidebar: () => GeistdocsSidebarContextValue; export {}; //# sourceMappingURL=sidebar.d.ts.map