import { Parameter, SvgFormat } from "./../index";
export interface HtmlTranscribeInterface {
    dpi?: number;
    pages?: string;
    svgFormat?: SvgFormat;
}
export declare class HtmlTranscribe implements HtmlTranscribeInterface, Parameter {
    dpi?: number;
    pages?: string;
    svgFormat?: SvgFormat;
    constructor(data: any);
    static getDpiDefault(): number;
    static getDpiDescription(): string;
    static getDpiMin(): number;
    static getDpiMax(): number;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static getSvgFormatDescription(): string;
    static fromJson(data: any): HtmlTranscribe;
    toJson(): any;
    clone(): HtmlTranscribe;
}
