/**
 * 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 payout. Only present for payouts in failed state. Possible values are [`insufficient_funds`, `transaction_denied`, `transaction_failed`, `transaction_returned`, `bank_transaction_error`, `fiat_account_limit_exceeded`, `invalid_bank_account_number`, `invalid_ach_rtn`, `invalid_wire_rtn`, `vendor_inactive`]\'
 * @export
 * @enum {string}
 */
export declare const PayoutErrorCode: {
    readonly InsufficientFunds: "insufficient_funds";
    readonly TransactionDenied: "transaction_denied";
    readonly TransactionFailed: "transaction_failed";
    readonly TransactionReturned: "transaction_returned";
    readonly BankTransactionError: "bank_transaction_error";
    readonly FiatAccountLimitExceeded: "fiat_account_limit_exceeded";
    readonly InvalidBankAccountNumber: "invalid_bank_account_number";
    readonly InvalidAchRtn: "invalid_ach_rtn";
    readonly InvalidWireRtn: "invalid_wire_rtn";
    readonly VendorInactive: "vendor_inactive";
};
export declare type PayoutErrorCode = typeof PayoutErrorCode[keyof typeof PayoutErrorCode];
