export declare class GivexInfo {
    /**
    * The three-character ISO currency code, such as **EUR**.
    */
    "currencyCode": string;
    /**
    * The password provided by the acquirer.
    */
    "password": string;
    /**
    * The sales channel used for the payment.
    */
    "paymentFlow": GivexInfo.PaymentFlowEnum;
    /**
    * The username provided by the acquirer.
    */
    "username": string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
export declare namespace GivexInfo {
    enum PaymentFlowEnum {
        Ecommerce = "Ecommerce",
        Pos = "POS"
    }
}
