import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { SearchField } from "./SearchField"; export declare class AISearchResult { addField( name?: string, label?: string, value?: string, displayValue?: string ): void; constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); getAisDocId(): string; getDocumentType(): string; getFeatureVector(): Record; getField(fieldName?: string): SearchField; getFields(): Array; getFileExtension(): string; getParentSysId(): string; getParentTitle(): string; getPassages(): Array; getPrimaryLanguage(): string; getRecordClassName(): string; getScore(): number; getSemanticEmbedding(): string; getSemanticSimilarity(): number; getSysId(): string; getTable(): string; getTableLabelPlural(): string; getTableLabelSingular(): string; getText(): string; getTitle(): string; getUrl(): string; setAisDocId(id?: string): void; setFeatureVector(featureVector?: Record): void; setFileExtension(fileExtension?: string): void; setParentSysId(sysId?: string): void; setParentTitle(title?: string): void; setRecordClassName(recordClassName?: string): void; setScore(score?: number): void; setSysId(sysId?: string): void; setTable(table?: string): void; setTableLabelPlural(tableLabelPlural?: string): void; setTableLabelSingular(tableLabelSingular?: string): void; setText(text?: string): void; setTitle(title?: string): void; setUrl(url?: string): void; }