UNPKG

362 BTypeScriptView Raw
1/// <reference types="react" />
2import React from 'react';
3import { ViewProperties } from 'react-native';
4export interface CheckboxProps extends ViewProperties {
5 checked?: boolean;
6}
7export declare class CheckboxDefaultProps implements CheckboxProps {
8 checked: boolean;
9}
10declare const Checkbox: React.SFC<CheckboxDefaultProps>;
11export default Checkbox;