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