import { ChangeEvent, InputHTMLAttributes } from 'react';
export type CheckBoxFootprint = "default" | "legacy";
export type CheckBoxProps = Omit, "type" | "onChange"> & {
disableAnimation?: boolean;
onChange?: (event: ChangeEvent) => void;
/** @deprecated Usá el CheckBox sin esta prop (huella 24×24). */
legacyTouchTarget?: boolean;
};