import type { ChangeEvent, ComponentProps, ReactNode } from 'react'; interface Choice { value: Value; label: NonNullable; selected?: boolean; } type InputRadioGroupOnChange = (value: Choice['value'], event: ChangeEvent) => void; export interface InputRadioGroupProps extends Omit, 'onChange' | 'onClick'> { choices: Choice[]; id?: string; name: string; stretch?: boolean; value?: string; onChange: InputRadioGroupOnChange; onBlur: () => void; onFocus: () => void; } export declare function InputRadioGroup({ choices, id, name, stretch, value, onChange, onBlur, onFocus, ...props }: InputRadioGroupProps): ReactNode; export {}; //# sourceMappingURL=index.d.ts.map