import { Exporter } from './exporter';
import { HtmlExporterOptions } from './html-exporter';
import { DomElement } from '../dom/parse5/dom-models';
export declare class AngularJsonExporter extends Exporter {
    private htmlExporter;
    constructor(selectors?: ((node: DomElement) => boolean)[]);
    exportContent(content: string, options: HtmlExporterOptions): string | undefined;
    private preprocessAngularJson;
}
