import { Transfer } from "../csv"; import { AssetBalance, NFTBalanceEntry } from "./types"; export type InsufficientBalanceInfo = { token: string; transferAmount?: string; isDuplicate: boolean; token_type: "erc20" | "native" | "erc721"; id?: string; }; export declare function checkAllBalances(assetBalance: AssetBalance | undefined, collectibleBalance: NFTBalanceEntry[] | undefined, transfers: Transfer[]): InsufficientBalanceInfo[];