import * as React from "react";
export interface RadioButtonProps {
    value: string;
    checked?: boolean;
    className?: string;
}
export declare const RadioButton: React.FC<RadioButtonProps>;
