import { Context } from '../imports/Context' import { Function } from '../imports/Function' export declare class RAGRetrievalResponse { constructor(cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean) getCount(): number getRAGSearchEventSysId(): string getResponseTimeInMs(): number getSearchResults(): Array getSpellCorrectedTerm(): string getTerm(): string getTotalHits(): number toJSON(): string }