import type { Meta, StoryObj } from '@storybook/react-vite'; import ThinkBox from './MessageReasoningPanel'; /** * `MessageReasoningPanel` (ThinkBox) is the collapsible panel that shows the * model's internal reasoning extracted from `` tags. It stays expanded * while thinking and auto-collapses once `thinkingEnded` becomes true. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Actively thinking — panel is expanded. */ export declare const Thinking: Story; /** Finished — panel auto-collapses. */ export declare const Ended: Story;