export const ActiveDispatchContext: import("use-context-selector").Context; export const ActiveMenuGroupIdContext: import("use-context-selector").Context; export const ActiveSubMenuIdContext: import("use-context-selector").Context; export function ActiveMenuProvider({ menuGroupId: initialMenuGroupId, subMenuId: initialSubMenuId, children, }: { menuGroupId?: string; subMenuId?: string; children: any; }): JSX.Element; export function useDispatchActive(): undefined; export function useActiveMenuGroupId(select: any): undefined; export function useMenuGroupActive(id: any): undefined; export function useActiveSubMenuId(select: any): undefined; export function withActiveMenuGroupId(Component: any): (props: any) => JSX.Element; export function withActiveSubMenuId(Component: any): (props: any) => JSX.Element;