import { AriaLabelingProps } from '../../core/types/a11y-props.js'; import { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { DataTestId } from '../../core/types/data-props.js'; import { StylingProps } from '../../core/types/styling-props.js'; import { WithChildren } from '../../core/types/with-children.js'; /** * Accepted properties for the Menu Prefix. * @public */ export interface MenuPrefixProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId, BehaviorTrackingProps { } /** * The `Menu.Prefix` component allows you to specify any content that should * be prefixed in the menu item. The `Menu.Prefix` component is only valid * within the `Menu.Item`, `Menu.Link`, `Menu.SubTrigger`, and `Menu.Intent` elements. * @example * ```tsx * {}}> * * * * Label * * ``` * @public */ export declare const Prefix: (props: MenuPrefixProps & import("react").RefAttributes) => import("react").ReactElement | null;