export interface RadioProps {
    children?: string;
    textStyle?: any;
    circleStyle?: any;
    checked?: boolean;
    interactive?: boolean;
    disabled?: boolean;
    disableCursor?: any;
    spaceBetweenTextAndIcon?: number;
    visible?: boolean;
    onChange?: (checked: boolean) => void;
}
declare function Radio(props: RadioProps): any;
declare namespace Radio {
    var symbol: string;
}
export default Radio;
