import { type HTMLAttributes } from "react"; import type { TicketEscalatedSegment } from "./types/message.types"; export interface TicketEscalatedMessageProps extends HTMLAttributes { data: TicketEscalatedSegment['data']; /** Timestamp of the message row this block came in on. */ timestamp?: Date; } /** * Handoff receipt — the conversation now belongs to a human technician. * Figma `ai-assistant-info` (type=escalation); chrome and the wrapping/ * truncation trade-offs live in the shared `AiAssistantInfo` shell. * * The body is whatever the backend authored, so the reason it gives stays * server-side; the client never composes an explanation and never branches on * `data.reason`, which is why a reason added server-side needs no change here. */ declare const TicketEscalatedMessage: import("react").ForwardRefExoticComponent>; export { TicketEscalatedMessage }; //# sourceMappingURL=ticket-escalated-message.d.ts.map