import { type FullAutoFill } from 'svelte/elements'; interface TextFields { label?: string; id?: string; autocomplete?: FullAutoFill; placeholder?: string; required?: boolean; disabled?: boolean; name?: string; type?: string; hideLabel?: boolean; } declare const TextField: import("svelte").Component; type TextField = ReturnType; export default TextField;