import { Renderer2 } from '@angular/core'; import { Subscription } from 'rxjs'; import { SafeAny, SafeStringAny, StringBoolean } from '../../utilities/type/type'; export declare class BzBaseComponent { bzStyleValue: SafeStringAny; bzClassValue: SafeStringAny; requiredValue: boolean; protected _subscription: Subscription; translationArray: string[]; set bzStyle(value: SafeStringAny); set bzClass(value: SafeStringAny); set required(value: StringBoolean); labelWidth: string; controlWidth: string; tooltip: string; /** * Set required css class. * * @author Federico Gambardella */ protected _setRequiredCssClassBase(formControl: SafeAny, renderer2: Renderer2, element: SafeAny): void; }