import { AllStyleProps } from '../../../utils/styledSystem'; /** * Creates a new Radio component * @param props the Radio props */ export declare const Radio: (props: RadioProps) => JSX.Element; export interface RadioState { } export interface RadioProps extends AllStyleProps { id: string; title: string; name?: string; value?: string; className?: string; selected?: boolean; label?: string; disabled?: boolean; hasError?: boolean; onChange?: Function; onFocus?: Function; onBlur?: Function; }