import { FC } from 'react'; import { IconProps } from '../../../Icon'; export type SelectIconProps = IconProps; /** * Icon displayed inside the Select trigger. * * Renders a dropdown indicator (chevron by default) that reflects * the Select state and size: * - Automatically adapts icon size based on Select size * - Exposes `data-open` attribute for styling open/closed states * - Allows replacing the default icon via `children` * * Typically used inside `SelectCombobox` as a visual affordance * that the control is expandable. */ export declare const SelectIcon: FC;