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