import React from 'react';
import { ViewStyle } from 'react-native';
interface CheckBoxProps {
    checked: boolean;
    customSize?: number;
    checkOnColor?: string;
    checkOffColor?: string;
    iconCheckColor?: string;
    borderRadius?: number;
    disabled?: boolean;
    style?: ViewStyle;
    onPress?: () => {};
}
declare const CheckBox: ({ checked, customSize, checkOnColor, checkOffColor, iconCheckColor, borderRadius, disabled, style, ...props }: CheckBoxProps) => React.JSX.Element;
export default CheckBox;
