import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { DvlFwVisualizationComponent } from '@dvl-fw/angular'; import { GraphicSymbolOption, GraphicVariable, GraphicVariableOption, Visualization } from '@dvl-fw/core'; import { LegendService } from '../../shared/services/legend/legend.service'; import { UpdateVisService } from '../../shared/services/update-vis/update-vis.service'; export declare class GraphicVariableLegendComponent implements OnInit, OnChanges { private updateService; private legendService; hideIfUnset: boolean; graphicSymbolOption: GraphicSymbolOption; graphicVariableOption: GraphicVariableOption; visualization: Visualization; legend: Visualization; graphicVariable: GraphicVariable; legendVisualizationType: string; legendComponent: DvlFwVisualizationComponent; constructor(updateService: UpdateVisService, legendService: LegendService); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private visualizationUpdated; private updateLegend; }