export declare class DokuDetails {
    /**
    * The checkout attempt identifier.
    */
    "checkoutAttemptId"?: string;
    /**
    * The shopper\'s first name.
    */
    "firstName": string;
    /**
    * The shopper\'s last name.
    */
    "lastName": string;
    /**
    * Base64-encoded JSON object containing SDK related parameters required by the SDK
    */
    "sdkData"?: string;
    /**
    * The shopper\'s email.
    */
    "shopperEmail": string;
    /**
    * **doku**
    */
    "type": DokuDetails.TypeEnum;
    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 DokuDetails {
    enum TypeEnum {
        DokuMandiriVa = "doku_mandiri_va",
        DokuCimbVa = "doku_cimb_va",
        DokuDanamonVa = "doku_danamon_va",
        DokuBniVa = "doku_bni_va",
        DokuPermataLiteAtm = "doku_permata_lite_atm",
        DokuBriVa = "doku_bri_va",
        DokuBcaVa = "doku_bca_va",
        DokuAlfamart = "doku_alfamart",
        DokuIndomaret = "doku_indomaret",
        DokuWallet = "doku_wallet",
        DokuOvo = "doku_ovo"
    }
}
