/** A hidden native checkbox input for form submission */ export declare const CheckboxHiddenInput: import("@qwik.dev/core").Component<{ pattern?: string | undefined; name?: string | undefined; disabled?: boolean | undefined; formAction?: string | undefined; formEnctype?: string | undefined; formMethod?: string | undefined; formNoValidate?: boolean | undefined; formTarget?: string | undefined; popoverTargetAction?: string | undefined; align?: string | undefined; src?: string | undefined; checked?: boolean | undefined; required?: boolean | undefined; accept?: string | undefined; alt?: string | undefined; autocomplete?: AutoFill | undefined; capture?: string | undefined; defaultChecked?: boolean | undefined; defaultValue?: string | undefined; dirName?: string | undefined; indeterminate?: boolean | undefined; multiple?: boolean | undefined; placeholder?: string | undefined; readOnly?: boolean | undefined; selectionDirection?: "none" | "forward" | "backward" | null | undefined; selectionEnd?: number | null | undefined; selectionStart?: number | null | undefined; size?: number | undefined; useMap?: string | undefined; valueAsNumber?: number | undefined; webkitdirectory?: boolean | undefined; autoComplete?: ("name" | "username" | "url" | "off" | "on" | "billing" | "shipping" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday-day" | "bday-month" | "bday-year" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "new-password" | "one-time-code" | "organization" | "postal-code" | "street-address" | "transaction-amount" | "transaction-currency" | "nickname" | "organization-title" | "cc-additional-name" | "language" | "bday" | "sex" | "photo") | Omit<"name" | "username" | "url" | "off" | "on" | "billing" | "shipping" | "additional-name" | "address-level1" | "address-level2" | "address-level3" | "address-level4" | "address-line1" | "address-line2" | "address-line3" | "bday-day" | "bday-month" | "bday-year" | "cc-csc" | "cc-exp" | "cc-exp-month" | "cc-exp-year" | "cc-family-name" | "cc-given-name" | "cc-name" | "cc-number" | "cc-type" | "country" | "country-name" | "current-password" | "family-name" | "given-name" | "honorific-prefix" | "honorific-suffix" | "new-password" | "one-time-code" | "organization" | "postal-code" | "street-address" | "transaction-amount" | "transaction-currency" | "nickname" | "organization-title" | "cc-additional-name" | "language" | "bday" | "sex" | "photo", string> | undefined; 'bind:checked'?: import("@qwik.dev/core").Signal | undefined; 'bind:value'?: import("@qwik.dev/core").Signal | undefined; enterKeyHint?: "search" | "enter" | "done" | "go" | "next" | "previous" | "send" | undefined; height?: (string | number) | undefined; max?: string | number | undefined; maxLength?: number | undefined; min?: string | number | undefined; minLength?: number | undefined; step?: string | number | undefined; type?: ("number" | "button" | "search" | "time" | "image" | "text" | "hidden" | "reset" | "submit" | "color" | "password" | (string & {}) | "checkbox" | "radio" | "tel" | "url" | "email" | "date" | "datetime-local" | "file" | "month" | "range" | "week") | undefined; value?: number | readonly string[] | FormDataEntryValue | null | undefined; width?: (string | number) | undefined; children?: undefined; popovertarget?: string | undefined; popovertargetaction?: ("toggle" | "hide" | "show") | undefined; } & import("@qwik.dev/core").HTMLElementAttrs & import("@qwik.dev/core/internal").QwikAttributes>;