import type { PropsOf } from '@builder.io/qwik'; export interface CheckboxFieldProps extends PropsOf<'input'> { label: string; error?: string; } export declare const CheckboxField: import("@builder.io/qwik").Component;