import { IExecuteFunctions, INodeType, INodeTypeDescription } from 'n8n-workflow'; interface SupplyData { response: unknown; } export declare class CustomEmbeddings implements INodeType { description: INodeTypeDescription; get type(): string; supplyData(this: IExecuteFunctions, itemIndex: number): Promise; } export {};