import type { Embeddings } from '@langchain/core/embeddings'; import type { VectorStore } from '@langchain/core/vectorstores'; import type { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; import type { VectorStoreNodeConstructorArgs } from '../types'; export declare function handleInsertOperation(context: IExecuteFunctions, args: VectorStoreNodeConstructorArgs, embeddings: Embeddings): Promise;