import { AriaLabelingProps } from '../../core/types/a11y-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 Suffix. * @public */ export interface MenuSuffixProps extends WithChildren, AriaLabelingProps, StylingProps, DataTestId { } /** * The `Menu.Suffix` component allows you to specify any content that should * be suffixed in the menu item. The `Menu.Suffix` component is only valid * within the `Menu.Item`, and `Menu.Link` elements. * @example * ```tsx * {}}> * Label * * * * * ``` * @public */ export declare const Suffix: (props: MenuSuffixProps & import("react").RefAttributes) => import("react").ReactElement | null;