export type TSuiBalance = { balance: string; coinObjectId: string; coinType: string; digest: string; previousTransaction: string; version: string; }; export type TSuiBalancesMerged = { balances: TSuiBalance[]; splitNeeded: boolean; }; export type TSuiAirDropCoin = { amount: number; coinType?: string; suiNetwork: string; }; export type TSuiAirDropAsset = { suiNetwork: string; amount: number; packageId: string; assetId: string; configId: string; title?: string; }; export type TSuiSendNftArgs = { packageId: string; recipient: string; assetId?: string; amount?: number; };