import * as React from "react"; import * as CheckboxPrimitive from "@radix-ui/react-checkbox"; import { Checkbox as RadixCheckbox } from "radix-ui"; import { type VariantProps } from "class-variance-authority"; declare const checkboxVariants: (props?: ({ variant?: "round" | "square" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare const Checkbox: React.ForwardRefExoticComponent, "ref"> & { children?: React.ReactNode; gap?: number | string; } & React.RefAttributes>; export interface EnhancedCheckboxProps extends React.ComponentProps, VariantProps { children?: React.ReactNode; gap?: number | string; } declare const EnhancedCheckbox: React.ForwardRefExoticComponent & React.RefAttributes>; export { Checkbox, EnhancedCheckbox, checkboxVariants }; export { Checkbox as CoreCheckbox }; export type { EnhancedCheckboxProps as CheckboxProps }; //# sourceMappingURL=checkbox.d.ts.map