export interface CSidebarNavContextProps {
    visibleGroup: string;
    setVisibleGroup: React.Dispatch<React.SetStateAction<string | undefined>>;
}
export declare const CSidebarNavContext: import("react").Context<CSidebarNavContextProps>;
