import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class TwentyCrm implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { /** * Load companies for dropdown selection */ getCompanies(this: ILoadOptionsFunctions): Promise; /** * Load people for dropdown selection */ getPeople(this: ILoadOptionsFunctions): Promise; /** * Load opportunities for dropdown selection */ getOpportunities(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }