import * as React from 'react'; import * as CheckboxPrimitive from '@radix-ui/react-checkbox'; import { type LucideProps } from 'lucide-react'; interface CheckboxProps extends CheckboxPrimitive.CheckboxProps { iconElement?: React.ReactNode; iconProps?: LucideProps; indicatorProps?: CheckboxPrimitive.CheckboxIndicatorProps; } declare const Checkbox: React.ForwardRefExoticComponent>; export { Checkbox, type CheckboxProps }; //# sourceMappingURL=checkbox.d.ts.map