import { FC, CSSProperties } from 'react'; declare type BaseType = string | number | boolean; interface PitRadioProps { value: BaseType; label?: BaseType; disabled?: boolean; light?: boolean; style?: CSSProperties; onChange?(e: any): void; } declare const PitRadio: FC; export default PitRadio;