import type { Meta, StoryObj } from '@storybook/react-vite'; import { FilePreviewCard } from './FilePreviewCard'; /** * `FilePreviewCard` is the thumbnail shown for each file attached to a message — * an image preview or a file-type icon with name and size, plus upload status. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Non-image file: shows the file-type icon, name, and size. */ export declare const Document: Story; /** Image file: shows the generated preview with a size badge. */ export declare const Image: Story; /** Upload in progress. */ export declare const Uploading: Story;