/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Indicates the failure reason of a transfer. Only present for transfers in a `failed` state. Possible values are `insufficient_funds`, `blockchain_error` and `transfer_denied` and `transfer_failed`
 * @export
 * @enum {string}
 */
export declare const TransferErrorCode: {
    readonly TransferFailed: "transfer_failed";
    readonly TransferDenied: "transfer_denied";
    readonly BlockchainError: "blockchain_error";
    readonly InsufficientFunds: "insufficient_funds";
};
export declare type TransferErrorCode = typeof TransferErrorCode[keyof typeof TransferErrorCode];
