Describe the bug
I'm getting the following typescript error on an input element with type="file".
Property 'files' does not exist on type 'SvelteInputProps'.
To Reproduce
<script>
let files;
</script>
<input type="file" bind:files />
Expected behavior
No error.