import type { AssetsItemDto } from './AssetsItemDto'; import type { EnumDto } from './EnumDto'; import type { TxFeeAmtDto } from './TxFeeAmtDto'; export type ConfigDto = { defaultMatchedInterest: string; auctionLendFee: string; auctionBorrowFee: string; secondLimitOrderTakerFee: string; secondLimitOrderMakerFee: string; secondMarketOrderTakerFee: string; epoch: string; assetsItemDto: Array; enum: EnumDto; txFeeAmtInfo: TxFeeAmtDto; };