UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (9 loc) 309 B
export interface SubMenuContextValue { opened: boolean; close: () => void; open: () => void; focusFirstItem: () => void; focusParentItem: () => void; parentContext: SubMenuContextValue | null; } export declare const SubMenuContext: import("react").Context<SubMenuContextValue | null>;