import type { Meta, StoryObj } from '@storybook/react-vite'; import ArticleAIResponse from './ArticleAIResponse'; /** * `ArticleAIResponse` renders the AI answer to a question about the current * article. It shows a spinner while loading, the (HTML) response when ready, * and an error banner on failure. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Loading: Story; export declare const WithResponse: Story; export declare const Error: Story;