import { type QwikIntrinsicElements } from "@builder.io/qwik"; export type CheckboxProps = { attributes?: QwikIntrinsicElements["input"]; defaultChecked?: boolean; checked?: boolean; onCheckedChange?: (checked: boolean) => void; disabled?: boolean; required?: boolean; name?: string; value?: string; }; export declare const Root: import("@builder.io/qwik").Component; export declare const Indicator: import("@builder.io/qwik").Component>;