import { h, InputHTMLAttributes } from "preact"; interface Props extends InputHTMLAttributes { label?: string; } declare const Checkbox: ({ label, ...props }: Props) => h.JSX.Element; export default Checkbox;