interface RecentSearchesProps { items?: string[]; title?: string; class?: string; onselect?: (query: string) => void; onremove?: (query: string) => void; onclear?: () => void; } declare const RecentSearches: import("svelte").Component; type RecentSearches = ReturnType; export default RecentSearches;