import type { Meta, StoryObj } from '@storybook/react-vite'; import FollowUpSuggestions from './FollowUpSuggestions'; /** * `FollowUpSuggestions` renders the assistant's suggested next questions as * clickable chips (keyboard shortcuts 1–5 also trigger them). */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Three follow-up suggestions on the last message in the thread. */ export declare const Default: Story; /** Many suggestions — only the first five are keyboard-shortcut enabled. */ export declare const ManySuggestions: Story;