import { Coordinate } from "../coordinate"; import { Author } from "../author"; import { PayloadType } from "./payload-types"; import { Conversation } from "../conversation"; export declare type AgentResponseDetails = { publishDate: number; text: string; }; export declare type AgentResponse = { coordinate: Coordinate; author: Author; operation: 'AGENT_RESPONSE'; conversation: Conversation; agentResponse: AgentResponseDetails; type: PayloadType; };