import type { GlobalProps } from '../../shared/global'; import type { ComponentChildren } from '../../shared/children'; export interface MenuProps extends GlobalProps { /** * A label that describes the purpose or contents of the element. When set, * it will be announced using assistive technologies and provide additional context. */ accessibilityLabel?: string; /** * The children define the actions to render inside the Menu. Only Button components are allowed as children of a Menu, and these Buttons can perform actions (using `onClick`) or link to other parts of the application (using `to`/ `href`). Any other component placed here will be ignored. */ children?: ComponentChildren; }