import { OgenzoPayment } from './payments';
import { OgenzoSMS } from './sms';
import { OgenzoMail } from './email';
export declare class OgenzoWidgets {
    email?: string;
    password?: string;
    airtelWallet?: string;
    mtnWallet?: string;
    payments?: OgenzoPayment;
    username?: string;
    smsApiKey?: string;
    sms?: OgenzoSMS;
    emailApiKey?: string;
    mail?: OgenzoMail;
    constructor(widgetsConfig: {
        paymentConfig?: {
            email: string;
            password: string;
            airtelWallet: string;
            mtnWallet: string;
        };
        smsConfig?: {
            username: string;
            apiKey: string;
        };
        emailConfig?: {
            apiKey: string;
        };
    });
}
