import { FormSelectChoice } from '../../../lib/types/types'; interface InputRadioProps { fieldId: string; index: number; option: FormSelectChoice; value: string; onChange: Function; disabled?: boolean; } export declare const InputRadio: ({ fieldId, index, option, value, onChange, disabled, }: InputRadioProps) => import("react/jsx-runtime").JSX.Element; export {};