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