interface TagInputProps { value?: string[]; placeholder?: string; label?: string; disabled?: boolean; max?: number; class?: string; onchange?: (tags: string[]) => void; } declare const TagInput: import("svelte").Component; type TagInput = ReturnType; export default TagInput;