import * as React from 'react';
interface RadioProps {
    schema?: any;
    onChange: Function;
    value: any;
    isInit?: boolean;
}
declare const RadioWidget: React.FC<RadioProps>;
export default RadioWidget;
