import { ReactElement } from 'react'; import { FieldComponentProps } from '@cezembre/forms'; export interface CheckboxProps extends FieldComponentProps { label?: string; instructions?: string; } export declare function Checkbox({ value, error, warning, isActive, onFocus, name, onChange, onBlur, label, instructions, }: CheckboxProps): ReactElement;