import React from 'react'; import { TextProps, TextStyle, ViewStyle, StyleProp, PressableProps } from 'react-native'; import { CheckBoxIconProps } from './components/CheckBoxIcon'; import { RneFunctionComponent } from '../helpers'; export interface CheckBoxProps extends PressableProps, CheckBoxIconProps { Component?: typeof React.Component; iconRight?: boolean; title?: string | React.ReactElement<{}>; titleProps?: TextProps; center?: boolean; right?: boolean; containerStyle?: StyleProp; wrapperStyle?: StyleProp; textStyle?: StyleProp; disabled?: boolean; disabledStyle?: StyleProp; disabledTitleStyle?: StyleProp; checkedTitle?: string; fontFamily?: string; } export declare const CheckBox: RneFunctionComponent;