import { INodeType, INodeTypeDescription, IExecuteFunctions, INodeExecutionData, ILoadOptionsFunctions } from 'n8n-workflow'; export declare class Creatio implements INodeType { methods: { loadOptions: { getODataEntities(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getODataEntityFields(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise; }