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