interface RadioButtonWithOpenLabelProps { value: string | null; label: string; readOnly: boolean; isSelected: boolean; onInputChange: (input: string) => unknown; } declare function RadioButtonWithOpenLabel(props: RadioButtonWithOpenLabelProps): import("react/jsx-runtime").JSX.Element; export default RadioButtonWithOpenLabel;