import { ExchangeType } from "../types/types.js";
export interface WalletBalance {
    balance: bigint;
    balanceFormatted: string;
    quote: number;
}
export interface TokenInfo {
    name: string;
    symbol: string;
    address: string;
    decimals: number;
    supply: number;
    imageUrl?: string;
    description?: string;
    social?: {
        website?: string;
        twitter?: string;
        telegram?: string;
    };
    exchange?: {
        type: ExchangeType;
        pairAddress: string;
    };
}
//# sourceMappingURL=models.d.ts.map