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