import { ChangeDetectorRef, ElementRef } from "@angular/core"; import { Config } from "../../interfaces/config.interface"; export declare class ControlErrorComponent { config: Config; private changeDetectorRef; elementRef: ElementRef; private _text; private _hide; constructor(config: Config, // Get module configuration changeDetectorRef: ChangeDetectorRef, elementRef: ElementRef); /** * Gets current value of the "hide" property * @returns boolean */ /** * Sets current value of the "hide" property * @param hide */ hide: boolean; /** * Gets current value of the validation text "text" property * @returns string */ /** * Sets the current value of the validation text "text" property * @param value */ text: string; }