import type { ConversationEvent, Message } from '../../types/schemas/chat/conversations.js'; type __VLS_Props = { messages: readonly Message[]; events?: readonly ConversationEvent[] | null; loading?: boolean; /** * Where the list renders: `page`/`widget` sit inside a `TelaChatBody` that * owns the conversation padding; `mobile` renders standalone and keeps its * own spacing. Defaults to `page`. */ variant?: 'page' | 'widget' | 'mobile'; streamingActiveMessageId?: string | null; preparingSteps?: readonly string[] | null; showTtft?: boolean; forkEnabled?: boolean; forkDisabled?: boolean; }; type __VLS_Slots = { 'failed-message-actions'?: (props: { message: Message; }) => unknown; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, { isPinned: import("vue").Ref; scrollToBottom: (options?: { smooth?: boolean; }) => void; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { retry: (messageId: string) => any; openConversation: (conversationId: string) => any; fork: (messageId: string) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onRetry?: ((messageId: string) => any) | undefined; onOpenConversation?: ((conversationId: string) => any) | undefined; onFork?: ((messageId: string) => any) | undefined; }>, { showTtft: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };