import React from 'react'; import { Section } from '../../../hooks/useChat'; interface FollowUpSuggestionsProps { section: Section; isLast: boolean; loading: boolean; sendMessage: (suggestion: string) => void; } /** * Component for rendering follow-up question suggestions. * Always shows suggestions if they exist, regardless of loading state. * Supports keyboard shortcuts 1-5 to trigger suggestions when not focused in an input. */ declare const FollowUpSuggestions: ({ section, isLast, loading, sendMessage, }: FollowUpSuggestionsProps) => React.JSX.Element; export default FollowUpSuggestions;