import { CommonProps } from "@trackunit/react-components"; import { MouseEventHandler, ReactElement, ReactNode } from "react"; import { FormComponentSizes } from "../../../types"; type MultiValueProps = { data: TOption; children: ReactNode; onClose: MouseEventHandler | undefined; disabled: boolean; fieldSize: FormComponentSizes; getOptionPrefix?: (option: TOption) => ReactNode; removeTagLabel: string; ref: (el: HTMLDivElement | null) => void; } & CommonProps; /** * Internal component for rendering multi-select values with measurement support. * Uses the measurement state to determine if the value should be displayed or hidden based on available width. */ export declare const MultiValue: ({ data, children, onClose, className, disabled, fieldSize, getOptionPrefix, removeTagLabel, ref, "data-testid": dataTestId, }: MultiValueProps) => ReactElement | null; export {};