antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 480 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;
}
declare const Checkbox: CompoundedComponent;
export default Checkbox;