import React from 'react'; import { ViewStyle, TextStyle, StyleProp } from 'react-native'; import { SpacingProps } from '../../../theme'; import { TestableProps } from '../../common/test'; export type CheckboxSize = 'small' | 'medium' | 'large' | number; export type CheckboxColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info' | string; export interface CheckboxProps extends SpacingProps, TestableProps { checked?: boolean; defaultChecked?: boolean; onChange?: (checked: boolean) => void; label?: React.ReactNode | string; disabled?: boolean; size?: CheckboxSize; color?: CheckboxColor; style?: StyleProp; labelStyle?: StyleProp; testID?: string; } declare const Checkbox: React.FC; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map