import type { Meta, StoryObj } from '@storybook/react-vite'; import Copy from './CopyMessageButton'; /** * `CopyMessageButton` copies an assistant message plus its citation URLs to the * clipboard and briefly swaps its icon to a checkmark to confirm. Hover to see * the tooltip; click to copy. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;