import React from 'react';
export interface RadioInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
    checked?: boolean;
    disabled?: boolean;
}
export declare function RadioInput({ checked, disabled, ...props }: RadioInputProps): React.JSX.Element;
