import { View } from 'react-native'; import type { SelectItemState } from '../item/SelectItem'; import type { ZestUIComponentProps } from '../../types'; /** * Indicates whether the select item is the selected one. * Renders a ``. */ export declare function SelectItemIndicator(componentProps: SelectItemIndicator.Props): import("react").ReactElement> | null; export interface SelectItemIndicatorState extends SelectItemState { } export interface SelectItemIndicatorProps extends ZestUIComponentProps { /** * Whether to keep the element mounted when the item is not selected. * @default false */ keepMounted?: boolean | undefined; } export declare namespace SelectItemIndicator { type State = SelectItemIndicatorState; type Props = SelectItemIndicatorProps; } //# sourceMappingURL=SelectItemIndicator.d.ts.map