import * as React from "react"; export interface Props { value?: string; className?: string; optionLabel: string; name?: string; errors?: string[]; id: string; disabled?: boolean; checked?: boolean; helperText?: string; checkTile?: boolean; inline?: boolean; required?: boolean; nativeRequired?: boolean; inputRef?: any; onChange?: (e: React.ChangeEvent) => void; } declare const Checkbox: React.FC; export default Checkbox;