import { EventEmitter, OnChanges } from '@angular/core'; export declare class InputControlComponent implements OnChanges { fieldControl: any; form: any; type: any; isBundle?: boolean; controlReady: EventEmitter; constructor(); /** * A callback method that is invoked if any data-bound properties change */ ngOnChanges(): void; /** * This method will notify when control is ready */ private notifyControlLoadComplete; /** * getter function to check mandatory fields */ get isMandatory(): boolean; /** * this funtion is used to remove the leading and trailing space */ trimValue(): void; }