import * as React from "react"; export declare type BaseMenuAlignment = "bottomLeft" | "bottomCenter" | "bottomRight" | "topLeft" | "topCenter" | "topRight"; export interface BaseMenuProps extends React.ComponentPropsWithoutRef<"div"> { /** * The content for the Menu */ children: React.ReactNode; /** * The callback fired when the Menu closes */ onClose: (itemValue?: string) => void; /** * The trigger ref for the Menu */ triggerRef: React.RefObject; } export declare const BaseMenu: React.ForwardRefExoticComponent>;