import { ReactElement } from "react"; import { SelectMenuItemProps } from "./selectMenuItemTypes"; /** * A multi select menu item is a basic wrapper around Menu item designed to be used as a multi value render in Select list */ export declare const MultiSelectMenuItem: ({ label, onClick, selected, focused, "data-testid": dataTestId, disabled, optionLabelDescription, optionPrefix, optionContent, fieldSize, }: SelectMenuItemProps) => ReactElement;