import { Parameter } from "./../index";
export interface ConverterReportInterface {
    contentProblems?: boolean;
    fontAliasUsage?: boolean;
    fontIsMissing?: boolean;
}
export declare class ConverterReport implements ConverterReportInterface, Parameter {
    contentProblems?: boolean;
    fontAliasUsage?: boolean;
    fontIsMissing?: boolean;
    constructor(data: any);
    static getContentProblemsDefault(): boolean;
    static getContentProblemsDescription(): string;
    static getFontAliasUsageDefault(): boolean;
    static getFontAliasUsageDescription(): string;
    static getFontIsMissingDefault(): boolean;
    static getFontIsMissingDescription(): string;
    static fromJson(data: any): ConverterReport;
    toJson(): any;
    clone(): ConverterReport;
}
