export declare class TokenTracker {
    private coingeckoService;
    private pool;
    constructor(apiKey: string);
    updateTokenData(currency: string, category: string): Promise<{
        success: boolean;
        count: number;
    }>;
    getLatestTokenData(symbol?: string): Promise<any>;
    close(): Promise<void>;
}
