import { ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class WhatsApp implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    properties: INodeProperties[];
}
export interface IWhatsAppCredential {
    phoneNumber: string;
    authStrategy: 'local' | 'mongodb';
    mongoConnectionString?: string;
}
//# sourceMappingURL=WhatsApp.credentials.d.ts.map