import { RadioChangeEvent, RadioGroupProps as AntdRadioGroupProps } from 'antd/lib/radio'; import React from 'react'; export interface RadioGroupProps extends AntdRadioGroupProps { options: Array<{ value: string; label: React.ReactNode; }>; onChange?: (e: RadioChangeEvent) => void; value?: string; type?: 'radio' | 'button'; vertical?: boolean; } export declare function RadioGroup(props: RadioGroupProps): JSX.Element;