export declare abstract class Embeddings { abstract embedDocuments(documents: string[]): Promise; abstract embedQuery(document: string): Promise; }