import { IExecuteFunctions } from 'n8n-core'; import { INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { voicenterApiTest } from './VoicenterApiTest'; export declare class Voicenter implements INodeType { description: INodeTypeDescription; methods: { credentialTest: { voicenterApiTest: typeof voicenterApiTest; }; }; execute(this: IExecuteFunctions): Promise; }