antd
Version:
An enterprise-class UI design language and React components implementation
12 lines (11 loc) • 443 B
TypeScript
import type { CheckboxRef } from 'rc-checkbox';
import InternalCheckbox from './Checkbox';
import Group from './Group';
export type { CheckboxChangeEvent, CheckboxProps } from './Checkbox';
export type { CheckboxGroupProps, CheckboxOptionType } from './Group';
export type { CheckboxRef };
type CompoundedComponent = typeof InternalCheckbox & {
Group: typeof Group;
};
declare const Checkbox: CompoundedComponent;
export default Checkbox;