type $$ComponentProps = { value?: any; type?: string; class?: string; [key: string]: any; }; declare const Input: import("svelte").Component<$$ComponentProps, {}, "value">; type Input = ReturnType; export default Input;