import { ICredentialType, INodeProperties } from 'n8n-workflow'; export interface IVoicenterApiCredentials { domain: string; code: string; crmUrl: string; testingMode: boolean; } export declare class VoicenterApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; }