import type { ReactNode } from "react"; import { type CheckBoxProps } from "../../atoms/CheckBox"; import { type VariantProps } from "class-variance-authority"; import { type ControllerProps } from "react-hook-form"; declare const checkboxFieldVariants: (props?: ({ appearance?: "default" | "reversed" | "inline" | null | undefined; size?: "sm" | "md" | "lg" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export type CheckBoxFieldProps = Omit & { label: string; description?: string | ReactNode; containerClassName?: string; error?: string; showError?: boolean; } & VariantProps & { checkboxAppearance?: CheckBoxProps["appearance"]; }; export declare function CheckboxField({ id, label, size, description, appearance, containerClassName, checkboxAppearance, showError, error, ...props }: CheckBoxFieldProps): import("react/jsx-runtime").JSX.Element; export type FormCheckBoxFieldProps = CheckBoxFieldProps & { name: string; controller?: Pick; }; export declare function FormCheckBoxField({ name, controller, ...props }: FormCheckBoxFieldProps): import("react/jsx-runtime").JSX.Element; export {};