import { EventEmitter, OnInit } from '@angular/core'; import { ConfigService } from '../../services/config/config.service'; import { EditorService } from '../../services/editor/editor.service'; export declare class SilderEvent { leftAnchor: number; step: number; rightAnchor: number; } export declare class SliderComponent implements OnInit { configService: ConfigService; editorService: EditorService; sliderValue: any; editorDataInput: any; leftAnchor: any; rightAnchor: any; step: any; onChange: EventEmitter; constructor(configService: ConfigService, editorService: EditorService); ngOnInit(): void; onValueChange(event: any, key: any): void; }