import * as React from "react"; export declare type MenuAlignment = "bottomLeft" | "bottomCenter" | "bottomRight" | "topLeft" | "topCenter" | "topRight"; export interface MenuProps { /** * The Menu's alignment relative to its trigger * * @default "bottomLeft" */ alignment?: MenuAlignment; /** * The content for the Menu */ children: React.ReactNode; /** * If the Menu is open * * @default false */ isOpen?: boolean; /** * The callback fired when the Menu closes */ onClose: (itemValue?: string) => void; /** * The callback fired when the Menu opens */ onOpen: () => void; /** * The trigger for the Menu */ trigger: React.ReactElement; } /** * @public * * @description * * The Menu component will display a list of items to a user. */ export declare const Menu: React.FC;