/********** Angular **********/ import { OnDestroy, OnInit } from '@angular/core'; /********** Component & Service **********/ import { InputFieldBase } from '../components/inputfieldbase.component'; import { ZComponentService } from '../services/zcomponent.service'; import { ZComponent, ZField, ZGroup, zSliderProperties } from "mmhglobal-zcore"; import { FormGroup } from '@angular/forms'; import * as i0 from "@angular/core"; export declare class ZsliderComponent extends InputFieldBase implements ZComponent, OnInit, OnDestroy { componentService: ZComponentService; data: ZField; group: ZGroup; form: FormGroup; get sliderData(): zSliderProperties; inputMode: string; minValue: number; maxValue: number; private minValidator; private maxValidator; smallStep: number; largeStep: number; tickPlacement: string; slidervalue: number; constructor(componentService: ZComponentService); ngOnInit(): void; ngOnDestroy(): void; ngAfterViewInit(): void; setMinValue(newValue: number): void; setMaxValue(newValue: number): void; private setInitPropertyValue; private addMinAndMaxValidator; private removeMinAndMaxValidator; get hasError(): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }