interface SmartSuggestionProps { title: string; body?: string; actionLabel?: string; dismissible?: boolean; class?: string; onaction?: () => void; ondismiss?: () => void; } declare const SmartSuggestion: import("svelte").Component; type SmartSuggestion = ReturnType; export default SmartSuggestion;