import React, { FC } from 'react'; import { Property as CSSProperty } from 'csstype'; import { Variant } from './types'; declare type Props = { id: string; type?: Variant; onChange?: (e: React.ChangeEvent | React.KeyboardEvent) => void; display?: CSSProperty.Display; checked?: boolean; disabled?: boolean; }; export declare const Checkbox: FC; export default Checkbox;