import React, { type HTMLAttributes } from "react"; import { type BaseInputWrapperProps } from "./commons/input"; export interface BaseCheckboxProps { checked?: boolean; id?: string; className?: BaseInputWrapperProps["className"] & { checkboxinputWrapper?: string; checkmark?: string; }; } export type CheckboxProps = Omit, "type" | "className" | "id" | keyof BaseCheckboxProps> & BaseCheckboxProps & Omit; export declare const Checkbox: React.ForwardRefExoticComponent, "type" | keyof BaseCheckboxProps> & BaseCheckboxProps & Omit & React.RefAttributes>; //# sourceMappingURL=checkbox.d.ts.map