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