import { View } from 'react-native'; import type { ZestUIComponentProps } from '../../types'; /** * A decorative icon inside the trigger, hidden from assistive technology. * Renders a ``. */ export declare function SelectIcon(componentProps: SelectIcon.Props): import("react").ReactElement>; export interface SelectIconState { open: boolean; } export interface SelectIconProps extends ZestUIComponentProps { } export declare namespace SelectIcon { type State = SelectIconState; type Props = SelectIconProps; } //# sourceMappingURL=SelectIcon.d.ts.map