import {Component} from 'react'; import {NativeMethods} from 'react-native'; import {Props as AndroidProps} from '../dist/CheckBox.android'; import {Props as IOSProps} from '../dist/CheckBox.ios'; import {Props as WindowsProps} from '../dist/CheckBox.windows'; type Constructor = new (...args: any[]) => T; type CheckBoxProps = AndroidProps & IOSProps & WindowsProps; declare class CheckBoxComponent extends Component {} declare const CheckBoxBase: Constructor & typeof CheckBoxComponent; export default class CheckBox extends CheckBoxBase {}