import { OnChanges, SimpleChanges } from '@angular/core'; import { IXmlParser } from './parsers'; import { XmlItem } from './reader'; import * as i0 from "@angular/core"; export declare class NgxXmlParserComponent implements OnChanges { private readonly globalXmlParser; /** * The parsed output to display */ items: XmlItem[]; /** * Input file */ source: File | undefined; /** * Optional custom xml parser - will override default if defined */ customXmlParser: IXmlParser | undefined; /** * File name to display */ get currentPath(): string; constructor(globalXmlParser: IXmlParser); ngOnChanges(changes: SimpleChanges): void; onFileSelected(file: File | undefined): void; loadContent(): Promise; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }