/** * Interface for the side navigation context */ interface ISideNavContext { /** * Current location pathname for routing */ location: string; /** * Function to update the current location */ setLocation: (location: string) => void; } export declare const SideNavContext: React.Context; /** * Custom hook for accessing the SideNav context. * @returns The SideNav context with location and setLocation */ export declare const useSideNavContext: () => ISideNavContext; export {};