import { BaseInputProps } from '../../types/input'; import { ChangeEvent } from 'react'; export interface InputCheckboxProps extends Omit { /** If true and the checkbox is unchecked, the checkbox will appear indeterminate */ indeterminate?: HTMLInputElement['indeterminate']; /** Callback that will fire anytime the state of the checkbox changes */ onChange?: (event: ChangeEvent, checked: boolean) => void; } declare const InputCheckbox: import("react").ForwardRefExoticComponent>; export default InputCheckbox;