import { FC, CSSProperties } from 'react'; declare type BaseType = string | number | boolean; interface ChangeFunc { (value: BaseType): any; } interface PitCheckboxProps { value: BaseType; label?: BaseType; disabled?: boolean; indeterminate?: boolean; onChange: ChangeFunc; style?: CSSProperties; } declare const PitCheckbox: FC; export default PitCheckbox;