import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { Agentic } from "./Agentic"; import { InputMatch } from "./InputMatch"; import { SearchResponse } from "./SearchResponse"; import { SmallTalk } from "./SmallTalk"; export declare class ConversationResponse { constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); getAgentic(): Agentic; getContext(): Record; getInputMatch(): InputMatch; getMessage(): string; getResponseType(): string; getSearchResponse(): SearchResponse; getSmallTalk(): SmallTalk; isAwaitingResponse(): boolean; isSuccess(): boolean; }