import { type QwikIntrinsicElements, Signal } from "@builder.io/qwik"; export type CheckedState = boolean | "indeterminate"; export type CheckboxProps = Omit & { defaultChecked?: CheckedState; checked?: Signal | CheckedState; required?: boolean; }; export declare const Root: import("@builder.io/qwik").Component;