interface Props { placeholder?: string; clearable?: boolean; multiple?: boolean; label?: string | undefined | null; hint?: string; name?: string; value?: string | string[]; items?: { value: string; label: string; data?: any; selected?: boolean; }[]; class?: string; children?: import('svelte').Snippet; onChange?: (value: any) => void; } declare const SSelect: import("svelte").Component; type SSelect = ReturnType; export default SSelect;