import type { TokenInfo, TokenList } from "@uniswap/token-lists"; export type TokenInfoWithBalance = Omit & { balance?: bigint | null; }; export type TokenListWithBalance = Omit & { tokens: TokenInfoWithBalance[]; }; //# sourceMappingURL=types.d.ts.map