UNPKG

443 BTypeScriptView Raw
1import type { CheckboxRef } from 'rc-checkbox';
2import InternalCheckbox from './Checkbox';
3import Group from './Group';
4export type { CheckboxChangeEvent, CheckboxProps } from './Checkbox';
5export type { CheckboxGroupProps, CheckboxOptionType } from './Group';
6export type { CheckboxRef };
7type CompoundedComponent = typeof InternalCheckbox & {
8 Group: typeof Group;
9};
10declare const Checkbox: CompoundedComponent;
11export default Checkbox;