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