import { type HTMLInputAttributes } from 'svelte/elements'; interface Props extends HTMLInputAttributes { onInput?: (value: string) => void; } declare const Input: import("svelte").Component; type Input = ReturnType; export default Input;