import { FC } from 'react'; export type FieldValue = string | number; export type RadioOption = { label: string; value: FieldValue; }; export interface Props { border?: boolean; className?: string; editable?: boolean; extraInfo?: string; hasDarkTooltips?: boolean; id: string; label: string; onChange: (value: FieldValue) => void; options: RadioOption[]; value: FieldValue; } declare const RadioField: FC; export default RadioField;