import { Context } from "../imports/Context.js"; import { Function } from "../imports/Function.js"; import { Agentic } from "./Agentic.js"; import { InputMatch } from "./InputMatch.js"; import { SearchResponse } from "./SearchResponse.js"; import { SmallTalk } from "./SmallTalk.js"; 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; } //# sourceMappingURL=ConversationResponse.d.ts.map