import { ClassName, InputTexts } from "@helpers/types"; import { InputHTMLAttributes } from "react"; export interface CheckboxProps extends Omit, Omit, "size">, ClassName { name?: string; checked?: boolean; disabled?: boolean; required?: boolean; error?: boolean; size?: "sm" | "md"; optionalLabel?: string; labelPosition?: "left" | "right"; ariaLabel?: string; ariaDescribedBy?: string; alignItems?: "center" | "baseline"; indeterminate?: boolean; checkboxClassName?: string; }