UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

13 lines (12 loc) β€’ 530 B
import type * as React from 'react'; import type { CheckboxProps } from './Checkbox'; import Group from './Group'; export type { CheckboxChangeEvent, CheckboxProps } from './Checkbox'; export type { CheckboxGroupProps, CheckboxOptionType } from './Group'; interface CompoundedComponent extends React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>> { Group: typeof Group; /** @internal */ __ANT_CHECKBOX: boolean; } declare const Checkbox: CompoundedComponent; export default Checkbox;