import React from 'react'; import { ChangeEvent, SetStateAction } from 'react'; import { ErrorType } from './Input'; export type CheckboxProps = ErrorType & { id: string; tabIndex?: number; value?: string; label: string; labelClassName?: string; onChange?: (event: ChangeEvent | SetStateAction) => void; disabled?: boolean; checked?: boolean; inputClassName?: string; className?: string; appendClassName?: string; style?: React.CSSProperties; }; export declare const Checkbox: ({ disabled, tabIndex, checked, id, label, value, onChange, className, appendClassName, labelClassName, error, errorClassName, style }: CheckboxProps) => JSX.Element;