amis-rpc-design/node_modules/antd/es/checkbox/index.d.ts
2023-10-07 19:42:30 +08:00

13 lines
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;