///
import { MenuProps } from './types';
export type OnExpandedChangeFn = (nestedId: string | null) => void;
export declare const MenuContext: import("react").Context & {
updateExpandedMenuSubId: OnExpandedChangeFn;
expandedMenuSubId: string | null;
isSubMenu?: boolean | undefined;
parentSubMenuId: string | null;
}>;
export declare const MenuContextProvider: import("react").Provider & {
updateExpandedMenuSubId: OnExpandedChangeFn;
expandedMenuSubId: string | null;
isSubMenu?: boolean | undefined;
parentSubMenuId: string | null;
}>;
export declare const useMenuContext: () => Pick & {
updateExpandedMenuSubId: OnExpandedChangeFn;
expandedMenuSubId: string | null;
isSubMenu?: boolean | undefined;
parentSubMenuId: string | null;
};
//# sourceMappingURL=context.d.ts.map