import { load } from "@tensorflow-models/universal-sentence-encoder"; import { Embeddings, EmbeddingsParams } from "./base.js"; export interface TensorFlowEmbeddingsParams extends EmbeddingsParams { } export declare class TensorFlowEmbeddings extends Embeddings { constructor(fields?: TensorFlowEmbeddingsParams); _cached: ReturnType; private load; private _embed; embedQuery(document: string): Promise; embedDocuments(documents: string[]): Promise; }