import { RemoteGraphProtocol, GetReleasedGraphStates, GetReleasedGraphStateResult } from '@flexem/fc-gui'; import { Observable } from 'rxjs'; import { GraphService } from '../../../shared/gallery/graph.service'; import { ConfigureGalleryServiceProxy } from '../../../shared/service-proxies/service-proxies'; export declare class DefaultSimulateRemoteGraphProtocol implements RemoteGraphProtocol { private readonly graphService; private readonly configureGalleryService; readonly version: number; remoteServiceBaseUrl: string; constructor(graphService: GraphService, configureGalleryService: ConfigureGalleryServiceProxy); getSystemGraphConfig(graphId: string): Observable; getAbsoluteStateUrl(graphId: string, stateUrl: string): string; getReleasedGraphStates(input: GetReleasedGraphStates): Observable; getGraphStateUrl(graphId: number, stateIndex: number, fill: string, stroke: string): string; }