interface SavedSearchRowProps { name: string; query?: string; count?: number; pinned?: boolean; class?: string; onselect?: () => void; onpin?: (pinned: boolean) => void; ondelete?: () => void; } declare const SavedSearchRow: import("svelte").Component; type SavedSearchRow = ReturnType; export default SavedSearchRow;