import { AriaLabelingProps } from '../../core/types/a11y-props.js'; import { DOMProps } from '../../core/types/dom.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * @public */ export interface MenuLabelProps extends WithChildren, AriaLabelingProps, DOMProps { } /** * Used to render a label. It won't be focusable using arrow keys. * @public */ export declare const Label: (props: MenuLabelProps & import("react").RefAttributes) => import("react").ReactElement | null;