import type { HTMLInputAttributes } from "svelte/elements"; type InputProps = Omit & { label?: string; helperText?: string; errorText?: string; invalid?: boolean; size?: "sm" | "md" | "lg"; value?: string | number | null; class?: string; }; declare const Input: import("svelte").Component; type Input = ReturnType; export default Input; //# sourceMappingURL=Input.svelte.d.ts.map