import type { Meta, StoryObj } from '@storybook/react-vite'; import ArticlePromptInput from './ArticlePromptInput'; /** * `ArticlePromptInput` is the single-line box for asking the AI a question * about the current article. It submits on Enter. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Empty: Story; export declare const WithText: Story; /** Fully interactive: the input is controlled by local state. */ export declare const Interactive: Story;