UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

13 lines (12 loc) 534 B
import { CheckboxGroupOption, CheckboxGroupProps, CheckboxProps } from "./type.mjs"; import { CheckboxGroup } from "./CheckboxGroup.mjs"; import { ReactNode, RefAttributes } from "react"; //#region src/Checkbox/index.d.ts interface ICheckbox { (props: CheckboxProps & RefAttributes<HTMLDivElement>): ReactNode; Group: typeof CheckboxGroup; } declare const Checkbox: ICheckbox; //#endregion export { CheckboxGroup, CheckboxGroupOption, CheckboxGroupProps, CheckboxProps, Checkbox as default }; //# sourceMappingURL=index.d.mts.map