import type React from 'react'; export declare namespace BizRadioButton { interface RadioGroupProps { defaultSelected?: any; value?: T; onChange?: (data: T) => any; options?: { value: any; label: string; icon?: React.ReactNode; }[]; children?: React.ReactNode; width?: React.CSSProperties['width']; } interface RadioButtonProps extends Pick { value: any; icon?: React.ReactNode; children?: React.ReactNode; disable?: boolean; } interface RadioButtonI extends React.FC { } interface BizRadioButtonGroup extends Pick { (props: RadioGroupProps): React.ReactElement; RadioButton: RadioButtonI; } }