import { Checkbox as TntdCheckbox } from 'tntd'; import type { CheckboxProps } from 'antd/lib/checkbox'; import type { FC } from 'react'; type ICheckbox

= FC

& { Group: typeof TntdCheckbox.Group; }; declare const Checkbox: ICheckbox; export default Checkbox;