import type { HTMLInputAttributes, HTMLInputTypeAttribute } from "svelte/elements";
import type { WithElementRef } from "bits-ui";
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;