import React, { JSX } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface CheckBoxProps {
    label: string | JSX.Element;
    selected: boolean;
    onPress: () => void;
    containerStyle?: StyleProp<ViewStyle>;
}
declare const CheckBox: React.FC<CheckBoxProps>;
export default CheckBox;
