import * as React from 'react'; import type { BaseUIComponentProps } from "../../utils/types.js"; /** * An icon that indicates that the trigger button opens a select popup. * Renders a `` element. * * Documentation: [Base UI Select](https://base-ui.com/react/components/select) */ export declare const SelectIcon: React.ForwardRefExoticComponent>; export interface SelectIconState { /** * Whether the select popup is currently open. */ open: boolean; } export interface SelectIconProps extends BaseUIComponentProps<'span', SelectIcon.State> {} export declare namespace SelectIcon { type State = SelectIconState; type Props = SelectIconProps; }