import type { Meta, StoryObj } from '@storybook/react-vite'; import { PastedContentCard } from './PastedContentCard'; /** * `PastedContentCard` appears in the composer's attachment tray when a large * block of text (>300 chars) is pasted into the chat input. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;