import React from 'react'; export type CheckboxValue = string | number | undefined; export type CheckboxProps = React.InputHTMLAttributes & { value?: CheckboxValue; label?: CheckboxValue; }; export declare const Checkbox: (props: CheckboxProps) => React.JSX.Element;