import { Wallet } from '../../Wallet'; export type MidnightFormattedBalances = { dustBalance: { balance: string; cap: string; } | undefined; shieldedTokenCount: number; unshieldedBalance: string | undefined; dustSyncing?: boolean; }; export type IMidnightWallet = Wallet & { getFormattedBalances: () => Promise; }; export declare const isMidnightWallet: (wallet: Wallet) => wallet is IMidnightWallet;