import { Document } from "../Document";
import { Pap } from "../parser/Containers";
import { RenderChp } from "./RenderChp";
export declare class RenderPap {
    private _pap;
    constructor(pap: Pap);
    apply(doc: Document, el: HTMLElement, rchp: RenderChp, ismaindiv: boolean): void;
}
