import React from 'react'; interface CheckboxProps { checked: boolean | null; className?: string; disabled?: boolean; inputClassName?: string; isInvalid?: boolean; labelClassName?: string; name?: string; onChange?: React.ChangeEventHandler; children?: React.ReactNode; 'data-testid'?: string; } /** * A simple checkbox component. Automatically generates an id so htmlFor/id attributes are unique. */ declare const Checkbox: React.ForwardRefExoticComponent>; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map