index.d.ts 402 Bytes
import React from 'react';
import { ButtonProps } from 'antd';
import type { SpaceProps } from 'antd';
export interface ButtonRadioProps extends SpaceProps {
    className?: string;
    prefixCls?: string;
    buttonProps?: ButtonProps;
    onChange?: (value: any) => void;
    value?: any;
    [props: string]: any;
}
declare const ButtonRadio: React.FC<ButtonRadioProps>;
export default ButtonRadio;