import type { HTMLInputAttributes } from 'svelte/elements'; import type { TRoot } from '../root/createRoot.svelte.js'; interface Props extends HTMLInputAttributes { root?: TRoot; } declare const Input: import("svelte").Component; type Input = ReturnType; export default Input;