antd-hz
Version:
华卓科技基于 antd 5.0 定制的组件库
13 lines (12 loc) • 544 B
TypeScript
import type * as React from 'react';
import type { CheckboxRef } from 'rc-checkbox';
import type { CheckboxProps } from './Checkbox';
import Group from './Group';
export type { CheckboxChangeEvent, CheckboxProps } from './Checkbox';
export type { CheckboxGroupProps, CheckboxOptionType } from './Group';
export type { CheckboxRef };
type CompoundedComponent = React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<CheckboxRef>> & {
Group: typeof Group;
};
declare const Checkbox: CompoundedComponent;
export default Checkbox;