import React from 'react'; type RadioGroupProps = { children: React.ReactNode; name?: string; value?: string; onChange?: (event: React.ChangeEvent) => void; disabled?: boolean; vertical?: boolean; } & React.HTMLAttributes; declare function RadioGroup(props: RadioGroupProps): JSX.Element; export default RadioGroup;