interface Props { items?: { value: any; label: string; }[]; label?: string; ajax?: boolean; clearAfterSelect?: boolean; onUpdate?: (value: string) => void; onSelect?: (item: { value: any; label: string; }) => void; } declare const SAutoComplete: import("svelte").Component; type SAutoComplete = ReturnType; export default SAutoComplete;