import { IQuestion } from 'survey-core';
import { PdfBrick } from './pdf_brick';
import { IRect, DocController } from '../doc_controller';
export declare class HTMLBrick extends PdfBrick {
    protected html: string;
    private margins;
    constructor(question: IQuestion, controller: DocController, rect: IRect, html: string, isImage?: boolean);
    renderInteractive(): Promise<void>;
}
