import * as CheckboxPrimitive from "@loke/ui/checkbox"; /** * Checkbox component for selecting options * * The Checkbox component provides a customizable and accessible way to allow users to make binary choices. * It combines a hidden native checkbox input with a styled visual representation, ensuring both aesthetics and functionality. */ declare function Checkbox({ className, ...props }: React.ComponentProps): import("react/jsx-runtime").JSX.Element; export { Checkbox };