import type { IAuthenticateGeneric, Icon, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export interface CredentialData extends ICredentialDataDecryptedObject {
    subDomain: string;
    apiKey: string;
    webhookSecret: string;
}
export declare class MocoApi implements ICredentialType {
    name: string;
    displayName: string;
    icon?: Icon;
    documentationUrl: string;
    properties: INodeProperties[];
    authenticate: IAuthenticateGeneric;
    test: ICredentialTestRequest;
}
