import { Checkbox as CheckboxMain } from './Checkbox'; import CheckboxIcon from './CheckboxIcon'; import CheckboxIndicator from './CheckboxIndicator'; import CheckboxLabel from './CheckboxLabel'; import { CheckboxGroup } from './CheckboxGroup'; import type { ICheckboxComponentType } from './types'; export const createCheckbox = ({ Root, Indicator, Icon, Label, Group, }: { Root: React.ComponentType; Indicator: React.ComponentType; Icon: React.ComponentType; Label: React.ComponentType