import { FormEvent, FunctionComponent, HTMLProps } from 'react'; import { Omit } from '../../typeUtils'; export interface DataListCheckProps extends Omit, 'type' | 'onChange' | 'disabled' | 'aria-labelledby'> { isDisabled?: boolean; isValid?: boolean; isChecked?: boolean; onChange?(checked: boolean, event: FormEvent): void; 'aria-labelledby': string; } declare const DataListCheck: FunctionComponent; export default DataListCheck;