import { View } from 'react-native'; import type { ComboboxItemState } from '../item/ComboboxItem'; import type { ZestUIComponentProps } from '../../types'; /** * Indicates whether its item is selected. * Renders a ``, or nothing while the item is unselected. */ export declare function ComboboxItemIndicator(componentProps: ComboboxItemIndicator.Props): import("react").ReactElement> | null; export interface ComboboxItemIndicatorState extends ComboboxItemState { } export interface ComboboxItemIndicatorProps extends ZestUIComponentProps { /** * Whether to keep the element mounted when the item is not selected. Required * to animate it out — nothing in React Native can report that an exit * animation finished. * @default false */ keepMounted?: boolean | undefined; } export declare namespace ComboboxItemIndicator { type State = ComboboxItemIndicatorState; type Props = ComboboxItemIndicatorProps; } //# sourceMappingURL=ComboboxItemIndicator.d.ts.map