interface Props { items?: { value: string; label: string; data: any; }[]; label: string; value?: string; onSelect?: (item: any) => void; placement?: 'top' | 'bottom' | 'left' | 'right' | 'bottom-start' | 'bottom-end' | 'top-start' | 'top-end' | 'left-start' | 'left-end' | 'right-start' | 'right-end'; } declare const SFontSelect: import("svelte").Component; type SFontSelect = ReturnType; export default SFontSelect;