linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
13 lines (12 loc) β’ 530 B
TypeScript
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;