import { useAiChatInternal as useAiChat } from "@vn-sdk/react-core"; import { SmallSpinnerIcon } from "./Icons"; interface SuggestionsProps { title: string; message: string; partial?: boolean; className?: string; onClick: () => void; } export function Suggestion({ title, onClick, partial, className }: SuggestionsProps) { if (!title) return null; const { isLoading } = useAiChat(); return ( ); }