import type { Meta, StoryObj } from '@storybook/react-vite'; import UserMessageHeader from './UserMessageHeader'; /** * `UserMessageHeader` renders the user's question as a collapsible heading with * a timestamp (e.g. `12:29 PM`) and copy / edit-and-resubmit actions. * * The header is a controlled component, so the wrapper below wires up the * `isExpanded`, `isEditing`, `editText`, and `copiedUserMsg` state that the * parent `ChatMessageBubble` normally owns. */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Default: expanded header with the 12:29 PM timestamp, copy and edit icons. */ export declare const Default: Story; /** Long question that wraps and clamps across lines. */ export declare const LongQuestion: Story; /** Copied state — the clipboard icon flips to a green check. */ export declare const CopiedState: Story;