Files
video-gen/video-gen-admin/node_modules/antd/lib/checkbox/index.d.ts
T
2026-05-25 17:08:18 +08:00

12 lines
529 B
TypeScript

import type { CheckboxRef } from '@rc-component/checkbox';
import InternalCheckbox from './Checkbox';
import Group from './Group';
export type { CheckboxChangeEvent, CheckboxProps, CheckboxSemanticClassNames, CheckboxSemanticName, CheckboxSemanticStyles, } from './Checkbox';
export type { CheckboxGroupProps, CheckboxOptionType } from './Group';
export type { CheckboxRef };
type CompoundedComponent = typeof InternalCheckbox & {
Group: typeof Group;
};
declare const Checkbox: CompoundedComponent;
export default Checkbox;