import { type CheckboxProps } from "@headlessui/react"; import { type VariantProps } from "class-variance-authority"; import type { PropsWithChildren } from "react"; declare const checkboxVariants: (props?: ({ appearance?: "checkbox" | "box" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type CheckBoxProps = VariantProps & Omit & { hoverBackground?: boolean; className?: string; }; export declare function CheckBox({ checked, onChange, appearance, size, hoverBackground, children, className, ...props }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};