import { FC } from 'react'; import { TextProps } from '../../../Text'; export interface SelectValueProps extends TextProps { /** * Placeholder text shown when no option is selected. * * Displayed when the select value is empty or undefined. * Once a value is selected, the placeholder is replaced * by the selected option’s content. */ placeholder?: string; } /** * `SelectValue` is a visual component responsible for displaying * the current value of the Select inside the trigger (combobox). * * It shows either: * - the selected option’s content (passed as `children`), or * - a placeholder when no value is selected. */ export declare const SelectValue: FC;