import { InputHTMLAttributes, default as React } from 'react'; export interface CheckboxProps extends Omit, 'type'> { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * Boolean that represents a partial state. */ partial?: boolean; } declare const Checkbox: React.ForwardRefExoticComponent>; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map