/** * @author Jafar Amini in March 2018. */ import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; export declare class JsonPrintComponent implements OnInit, OnChanges { json_In: any; jsonPrintPre: any; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; output(inp: any): void; syntaxHighlight(json: any): any; }