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