import { Factory, StylesApiProps } from '../../core';
import { __PopoverProps, PopoverStylesNames } from '../Popover';
import { MenuDivider } from './MenuDivider/MenuDivider';
import { MenuDropdown } from './MenuDropdown/MenuDropdown';
import { MenuItem } from './MenuItem/MenuItem';
import { MenuLabel } from './MenuLabel/MenuLabel';
import { MenuSub } from './MenuSub/MenuSub';
import { MenuTarget } from './MenuTarget/MenuTarget';
export type MenuStylesNames = 'item' | 'itemLabel' | 'itemSection' | 'label' | 'divider' | 'chevron' | PopoverStylesNames;
export type MenuFactory = Factory<{
    props: MenuProps;
    stylesNames: MenuStylesNames;
    staticComponents: {
        Item: typeof MenuItem;
        Label: typeof MenuLabel;
        Dropdown: typeof MenuDropdown;
        Target: typeof MenuTarget;
        Divider: typeof MenuDivider;
        Sub: typeof MenuSub;
    };
}>;
export interface MenuProps extends __PopoverProps, StylesApiProps<MenuFactory> {
    variant?: string;
    /** Menu children */
    children?: React.ReactNode;
    /** Controlled menu opened state */
    opened?: boolean;
    /** Uncontrolled menu initial opened state */
    defaultOpened?: boolean;
    /** If set, focus is trapped within the menu dropdown when it is opened */
    trapFocus?: boolean;
    /** Called when menu opened state changes */
    onChange?: (opened: boolean) => void;
    /** Called when Menu is opened */
    onOpen?: () => void;
    /** Called when Menu is closed */
    onClose?: () => void;
    /** If set, the Menu is closed when one of the items is clicked. Can be overridden per item with `closeMenuOnClick` prop */
    closeOnItemClick?: boolean;
    /** If set, arrow key presses wrap around from last item to first and vice versa */
    loop?: boolean;
    /** If set, the dropdown is closed when the `Escape` key is pressed @default true */
    closeOnEscape?: boolean;
    /** Event trigger to open menu. Note: 'hover' is not keyboard accessible; prefer 'click-hover' for accessible hover menus */
    trigger?: 'click' | 'hover' | 'click-hover';
    /** Open delay in ms, applicable only to `trigger="hover"` variant */
    openDelay?: number;
    /** Close delay in ms, applicable only to `trigger="hover"` variant */
    closeDelay?: number;
    /** If set, the dropdown is closed on outside clicks */
    closeOnClickOutside?: boolean;
    /** Events that trigger outside click detection. Includes mousedown for desktop clicks, touchstart for mobile, and keydown for Escape key handling @default ['mousedown', 'touchstart', 'keydown'] */
    clickOutsideEvents?: string[];
    /** Id base to create accessibility connections */
    id?: string;
    /** Set the `tabindex` on all menu items. Use `0` to allow Tab key navigation through menu items (required for navigation menus following WAI-ARIA disclosure pattern). @default -1 */
    menuItemTabIndex?: -1 | 0;
    /** Adds a hidden focusable element at the start of the dropdown to prevent unexpected focus jumps when opening with keyboard. Set to false if you need custom focus management. @default true */
    withInitialFocusPlaceholder?: boolean;
    /** Determines whether focus should be automatically returned to control when dropdown closes @default `true` */
    returnFocus?: boolean;
}
export declare const Menu: import("../..").MantineComponent<{
    props: MenuProps;
    stylesNames: MenuStylesNames;
    staticComponents: {
        Item: typeof MenuItem;
        Label: typeof MenuLabel;
        Dropdown: typeof MenuDropdown;
        Target: typeof MenuTarget;
        Divider: typeof MenuDivider;
        Sub: typeof MenuSub;
    };
}>;
