import { ILayerService, IStartStopService, MapDatasource, IMapLayer, LayerServerOptions } from '..'; export declare class LayerServer implements ILayerService, IStartStopService { id: string; title?: string | undefined; options?: LayerServerOptions; type: string; layers: IMapLayer[]; getInstance(init?: Partial): IStartStopService; constructor(init?: Partial); Start(manager: MapDatasource): Promise; /** remove previously added layers */ private removeExistingLayers; Stop(manager: MapDatasource): void; }