import { CheckboxGroupProps, CheckboxProps } from "./types.js"; import { Checkbox } from "./checkbox.js"; import { CheckboxGroup } from "./checkbox-group.js"; //#region src/checkbox/index.d.ts type ICheckbox = typeof Checkbox & { Group: typeof CheckboxGroup; }; declare const DefaultCheckbox: ICheckbox; //#endregion export { DefaultCheckbox }; //# sourceMappingURL=index.d.ts.map