/** * Component to display label and value of output page manage header * Attributes: * @attribute label | String Label Name * @attribute value | String Value of Output * @author Pholla Doll * @createdDate 2019-09-03 * @company REDFOX Web Solutions */ import { OnInit } from '@angular/core'; export declare class OutputFieldComponent implements OnInit { label: string; value: string; type: string; linkValue: string; isCap: boolean; toolTipText: string; borders: string; isLoading: boolean; constructor(); ngOnInit(): void; }