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