12345678910111213141516 |
- import { IBaseProps } from '../_util/base';
- export interface IRadioProps extends IBaseProps {
-
- value?: string;
- defaultChecked?: boolean;
-
- color?: string;
- checked?: boolean;
- disabled?: boolean;
- onChange?: (checked: boolean, e: any) => void;
- }
- export declare const RadioDefaultProps: Partial<IRadioProps>;
|