import React from 'react'; export type RadioGroupOrientation = 'vertical' | 'horizontal'; export type RadioOption = { value: string; label: string; description?: string; disabled?: boolean; }; export type RadioGroupProps = Omit, 'onChange' | 'defaultValue' | 'className' | 'style' | 'children'> & { label: string; options: ReadonlyArray; value?: string; defaultValue?: string; onChange?: React.ChangeEventHandler; hideLabel?: boolean; helperText?: string; error?: string; disabled?: boolean; required?: boolean; orientation?: RadioGroupOrientation; name?: string; id?: string; className?: string; style?: React.CSSProperties; }; type RadioGroupComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const RadioGroup: RadioGroupComponent; export default RadioGroup; //# sourceMappingURL=index.d.ts.map