import { TOption } from '../select/SelectInput';
type RadioProps<ValueType extends string | number> = {
    options: TOption<ValueType>[];
    onChange: (value: TOption<ValueType>) => void;
    idPrefix: string;
    label?: string;
    required?: boolean;
    value?: TOption<ValueType> | null;
};
declare function RadioInput<ValueType extends string | number>({ options, onChange, idPrefix, label, value }: RadioProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export default RadioInput;
