import type { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow'; export declare class IkasApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; icon: "file:ikas-icon.svg"; properties: INodeProperties[]; preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{ sessionToken: string; }>; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }