/** * @fileoverview Shared mock data for Storybook stories. * * These fixtures let the chat components render in complete isolation — no * API calls, auth session, or chat provider required. Everything a story * needs (messages, sources, search progress, suggestions) is fabricated here. */ import type { Section } from '../types/chat'; import type { UserMessage, AssistantMessage, SourceMessage, SearchQuery } from '../components/ChatConversation/ChatWindow'; /** A user message fixed to 12:29 PM today so timestamps render predictably. */ export declare const mockUserMessage: UserMessage; export declare const mockAssistantMessage: AssistantMessage; export declare const mockSources: SourceMessage['sources']; export declare const mockSearchQueries: SearchQuery[]; /** A fully-populated section (user turn + assistant response + sources). */ export declare const mockSection: Section;