import { TOption } from '../select/SelectInput';
type RadioOptionsProps<ValueType extends string | number> = {
    option: TOption<ValueType>;
    onClick: (option: TOption<ValueType>) => void;
    isSelected: boolean;
    idPrefix: string;
};
declare function RadioOption<ValueType extends string | number>({ option, onClick, isSelected, idPrefix }: RadioOptionsProps<ValueType>): import("react/jsx-runtime").JSX.Element;
export default RadioOption;
