/** Represents the type of payout fee that can incur as part of a payout. */ export declare const PayoutFeeType: { readonly TransferFee: "TRANSFER_FEE"; readonly TaxOnTransferFee: "TAX_ON_TRANSFER_FEE"; }; export type PayoutFeeType = (typeof PayoutFeeType)[keyof typeof PayoutFeeType];