import { BaseClient } from '../../shared/base-client';
import { InsightXBubblemapResponse, InsightXTimestampsResponse } from './types';
export declare class InsightXClient extends BaseClient {
    constructor();
    getBubblemap(chainId: string, address: string): Promise<InsightXBubblemapResponse>;
    getBubblemapByTimestamp(chainId: string, address: string, timestamp: string): Promise<InsightXBubblemapResponse>;
    getTimestamps(chainId: string, address: string): Promise<InsightXTimestampsResponse>;
}
