import { InputHTMLAttributes } from 'react'; export type CheckboxProps = InputHTMLAttributes & { label?: string; disabled?: boolean; checked?: boolean; error?: boolean; warning?: boolean; title?: string; indeterminate?: boolean; }; export declare const Checkbox: (props: CheckboxProps) => import("react/jsx-runtime").JSX.Element;