import { SimpleChange, OnInit, OnChanges } from '@angular/core';
import { AsiFileService } from './../../services/asi-file.service';
export declare class AsiCodeViewer implements OnInit, OnChanges {
    private fileService;
    private platformId;
    /** language of the code to be displayed */
    language: string;
    /** load code from url */
    fromUrl: string;
    /** code from string value */
    value: string;
    hightlightCode: any;
    constructor(fileService: AsiFileService, platformId: any);
    ngOnInit(): void;
    ngOnChanges(change: {
        [propName: string]: SimpleChange;
    }): void;
}
