///
import React from 'react';
import { ImageStyle, StyleProp, ViewStyle } from 'react-native';
import { CheckboxItemPropsType } from './PropsType';
import { ICheckboxStyle } from './style/index.native';
export interface ICheckboxItemNativeProps extends CheckboxItemPropsType {
styles?: ICheckboxStyle;
checkboxStyle?: StyleProp;
style?: StyleProp;
}
export default class CheckboxItem extends React.Component {
static defaultProps: {
styles: any;
};
handleClick: () => void;
render(): JSX.Element;
}