import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import type { Option } from './types'; export declare class MonicaCrm implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getActivityTypes(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; getTagsToAdd(this: ILoadOptionsFunctions): Promise; getTagsToRemove(this: ILoadOptionsFunctions): Promise; getContactFieldTypes(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; getGenders(this: ILoadOptionsFunctions): Promise<{ value: string; name: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=MonicaCrm.node.d.ts.map