import { Radio as InnerRadio } from './radio'; import { RadioButton as InnerRadioButton } from './radio-button'; import { RadioGroup as InnerRadioGroup } from './radio-group'; type CompoundedComponent = typeof InnerRadio & { Group: typeof InnerRadioGroup; Button: typeof InnerRadioButton; }; export declare const Radio: CompoundedComponent; export type { RadioProps } from './radio'; export type { RadioButtonProps } from './radio-button'; export type { RadioGroupProps } from './radio-group';