import { ICredentialType, INodeProperties } from 'n8n-workflow'; export interface ISummaApiCredentials { url: string; user: string; password: string; testingMode: boolean; } export declare class SummaApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; }