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<CheckboxProps & React.RefAttributes<HTMLButtonElement>>;
export { Checkbox, type CheckboxProps };
//# sourceMappingURL=checkbox.d.ts.map