import type { WalletService } from "./wallet.js";
export interface PoolStats {
    poolAddress: string;
    bammAddress: string;
    createdAtTimestamp: string;
    token0Symbol: string;
    token0AmountLocked: number;
    token1Symbol: string;
    token1AmountLocked: number;
    tvl: number;
}
export declare class BammPoolsStatsService {
    private walletService;
    private endpoint;
    constructor(walletService: WalletService);
    getPoolsStats(): Promise<PoolStats[]>;
    formatPoolsStats(pools: PoolStats[]): string;
}
