import { type PropsWithChildren } from 'react'; /** * Accepted properties for the Select DisplayValue * @public */ export type SelectV2DisplayValueProps = PropsWithChildren; /** * `SelectV2.DisplayValue` defines a custom display within the Trigger. A SelectV2.DisplayValue component * is only valid within a SelectV2.Trigger and accepts the following slots * * - SelectV2.Prefix * - Freeform JSX content * * @example * ```tsx * * * * * Selected color: * * * ``` * @public */ export declare function SelectV2DisplayValue(props: SelectV2DisplayValueProps): null;