import { ObservableMaybe, type JSX } from "woby"; type LabelPosition = "left" | "right" | "bottom" | "top"; type CheckboxProps = JSX.InputHTMLAttributes & { children?: JSX.Children; labelPosition?: ObservableMaybe; }; export declare const Checkbox: (props: CheckboxProps) => JSX.Child; export {}; //# sourceMappingURL=Checkbox.d.ts.map