import { Amount } from "./amount";
export declare class CheckoutBankTransferAction {
    /**
    * The account number of the bank transfer.
    */
    "accountNumber"?: string;
    /**
    * The bank code of the bank transfer.
    */
    "bankCode"?: string;
    /**
    * The name of the account holder.
    */
    "beneficiary"?: string;
    /**
    * The BIC of the IBAN.
    */
    "bic"?: string;
    /**
    * The branch code of the bank transfer.
    */
    "branchCode"?: string;
    /**
    * The url to download payment details with.
    */
    "downloadUrl"?: string;
    /**
    * The IBAN of the bank transfer.
    */
    "iban"?: string;
    /**
    * Specifies the payment method.
    */
    "paymentMethodType"?: string;
    /**
    * The transfer reference.
    */
    "reference"?: string;
    /**
    * The routing number of the bank transfer.
    */
    "routingNumber"?: string;
    /**
    * The e-mail of the shopper, included if an e-mail was sent to the shopper.
    */
    "shopperEmail"?: string;
    /**
    * The sort code of the bank transfer.
    */
    "sortCode"?: string;
    "totalAmount"?: Amount | null;
    /**
    * The type of the action.
    */
    "type": CheckoutBankTransferAction.TypeEnum;
    /**
    * Specifies the URL to redirect to.
    */
    "url"?: 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 CheckoutBankTransferAction {
    enum TypeEnum {
        BankTransfer = "bankTransfer"
    }
}
