import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { checked?: boolean | 'mixed'; disabled?: boolean; label?: string; name?: string; onChange?: FunctionGeneric; } declare const Checkbox: React.FC; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map