import { Injector, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; import { SimplePropertySchemaFieldLoaderComponent } from '../../../schema/schema-field-host.component'; import { SmeInternalFormFieldComponent } from '../form-field.component'; import * as i0 from "@angular/core"; export declare class SliderFormFieldLoaderComponent extends SimplePropertySchemaFieldLoaderComponent { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } /** * Accessible range field implementation as a slider */ export declare class SliderFormFieldComponent extends SmeInternalFormFieldComponent implements OnInit { /** * The source name to use for logging */ protected get logSourceName(): string; /** * Indicates the default value for immediateValidation. * This is meant to be overridden by derived classes */ protected get defaultImmediateValidation(): boolean; /** * The size of each movement of the slider. */ step: number; /** * The minimum value of the slider */ min: number; /** * The maximum value of the slider */ max: number; /** * Initializes a new instance of the SliderFormFieldComponent */ constructor(injector: Injector); /** * Creates the idBag used by this component to store unique element ids. * id values will be assigned be the @see BaseComponent super class. */ protected createIdBag(): MsftSme.StringMap; /** * Determines the value to use when clearing the field based on the initial value type */ protected getClearValue(): number; /** * Performs validation that is internal to this control * @param c The form control attached to this instance */ protected validate(c: FormControl): import("@angular/forms").ValidationErrors; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }