import { BigDecimalish } from '@nadohq/utils'; import { Bytes } from './bytes.js'; interface MintMockERC20Params { productId: number; amount: BigDecimalish; } interface SettlePnlParams { subaccounts: Bytes[]; productIds: number[]; } export type { MintMockERC20Params, SettlePnlParams };