import { ZugferdFileData, Parameter } from "./../index";
export interface ZugferdInterface {
    xmlFile: ZugferdFileData;
}
export declare class Zugferd implements ZugferdInterface, Parameter {
    xmlFile: ZugferdFileData;
    constructor(data: any);
    static getXmlFileDescription(): string;
    static fromJson(data: any): Zugferd;
    toJson(): any;
    clone(): Zugferd;
}
