import { type Json, type UiNode } from "../internal.ts"; type CheckboxProps = { name?: string; label?: string; action?: Json; checked?: boolean; disabled?: boolean; }; export declare function Checkbox(props: CheckboxProps): UiNode; export {};