import { type WithChildren, type AriaLabelingProps, type DOMProps } from '@dynatrace/strato-components/core'; /** * @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) => React.ReactElement | null;