import { TokenResponse } from '../types';
export declare class CoingeckoService {
    private readonly apiKey;
    private readonly baseUrl;
    constructor(apiKey: string);
    getEcosystemTokens(category: string, currency: string): Promise<TokenResponse[]>;
}
