import React from 'react'; import { ColorValue, ViewStyle } from 'react-native'; interface Props { checked?: boolean; activeColor?: ColorValue; inactiveColor?: ColorValue; tintColor?: ColorValue; onChange?: (check: boolean) => void; size?: number; containerStyle?: ViewStyle; inactiveBackgroundColor?: ColorValue; } declare const CheckBox: React.FC; export default CheckBox;