import { PropsWithChildren } from 'react'; /** * SideNavProvider component for managing routing state in SideNav components. * * Features: * - Provides routing context for SideNav components * - Manages current location state * - Enables client-side routing without page reloads * - Integrates with browser history API * - Context provider for child components * * @example * * * Introduction * * */ export declare const SideNavProvider: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;