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