import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A decorative icon inside the trigger, hidden from assistive technology. * Renders a ``. * * The same part as `Select.Icon`, for the combobox's trigger — the chevron a * consumer draws to show that the list can open. */ export declare function ComboboxIcon(componentProps: ComboboxIcon.Props): import("react").ReactElement>; export interface ComboboxIconState { open: boolean; } export interface ComboboxIconProps extends ZestUIComponentProps { } export declare namespace ComboboxIcon { type State = ComboboxIconState; type Props = ComboboxIconProps; } //# sourceMappingURL=ComboboxIcon.d.ts.map