import { GraphData, GraphRequestParams } from '../../interfaces/graph.interface'; import { Api } from '../api'; export declare const serializer: (queryParams: Record) => string; export declare class Graph { api: Api; constructor(api: Api); getReferences(hash: string, params: GraphRequestParams): Promise>; getRelations(hash: string, params: GraphRequestParams): Promise>; }