export * from './checkbox'; import { ForceMountable, SlottableViewProps, ViewRef, SlottablePressableProps, PressableRef } from '@rn-primitives/types'; type RootProps = SlottablePressableProps & { checked: boolean; onCheckedChange: (checked: boolean) => void; disabled?: boolean; }; type IndicatorProps = ForceMountable & SlottableViewProps; type RootRef = PressableRef; type IndicatorRef = ViewRef; export type { IndicatorProps, IndicatorRef, RootProps, RootRef };