import { FormControl } from '@angular/forms'; import { DescriptorFormControl } from '../descriptor/descriptor-form-control'; import * as i0 from "@angular/core"; /** * Base class for each control */ export declare class VedraxBaseComponent { /** * The form control */ control: FormControl; /** * The control descriptor object */ descriptor: DescriptorFormControl; constructor(); /** * Helper method for checking in a template if a property exists. * If the property exists, we return the property value, otherwise false. * * @param name the property name */ hasProperty(name: string): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }