import { Ref } from 'react'; import { AllStyleProps } from '../../../utils/styledSystem'; /** * Creates a new Checkbox component * @param props the checkbox props */ export declare const Checkbox: (props: CheckboxProps) => JSX.Element; export interface CheckboxState { } export interface CheckboxProps extends AllStyleProps { id: string; title: string; name: string; ref?: Ref; className?: string; checked?: boolean; label?: string; disabled?: boolean; hasError?: boolean; onChange?: Function; onFocus?: Function; onBlur?: Function; }