import { BaseClient, BaseClientConfig } from '../../shared/base-client';
import { BubbleMapsGetBubbleMapsResponse } from './types';
export declare class BubbleMapsClient extends BaseClient {
    constructor(config?: BaseClientConfig);
    /**
     * Get bubble graph data for a specific token
     * @param token The token address to get graph data for
     * @param chain The blockchain network (default: sol)
     * @param dexscreener Whether to include dexscreener data (default: true)
     * @returns Bubble graph data for the token
     */
    getBubbleMapsGraph(token: string, chain?: string, dexscreener?: boolean): Promise<BubbleMapsGetBubbleMapsResponse>;
}
