import * as React from "react"; interface Props { label: string; error?: string; name: string; value: string; check: string; handleChange: Function; } declare class RadioButton extends React.Component { constructor(props: Props); render(): JSX.Element; } export default RadioButton;