import * as React from 'react'; import { IndicatorProps, IndicatorRef, RootProps, RootRef } from './index.js'; import './checkbox'; import '@rn-primitives/types'; type RootComponentProps = RootProps & React.RefAttributes; declare const Root: { ({ asChild, disabled, checked, onCheckedChange, ref, ...props }: RootComponentProps): React.JSX.Element; displayName: string; }; type IndicatorComponentProps = IndicatorProps & React.RefAttributes; declare const Indicator: { ({ asChild, forceMount, ref, ...props }: IndicatorComponentProps): React.JSX.Element | null; displayName: string; }; export { Indicator, Root };