import type { HTMLInputAttributes, HTMLInputTypeAttribute } from "svelte/elements"; import { type WithElementRef } from "../../../utils.js"; type InputType = Exclude; type Props = WithElementRef & ({ type: "file"; files?: FileList; } | { type?: InputType; files?: undefined; })>; declare const Input: import("svelte").Component; type Input = ReturnType; export default Input;