import { Parameter, XRechnung, XslTransformation } from "./../index";
export interface ConverterTransformInterface {
    xRechnung?: XRechnung;
    xslTransformation?: XslTransformation;
}
export declare class ConverterTransform implements ConverterTransformInterface, Parameter {
    xRechnung?: XRechnung;
    xslTransformation?: XslTransformation;
    constructor(data: any);
    static getXRechnungDescription(): string;
    static getXslTransformationDescription(): string;
    static fromJson(data: any): ConverterTransform;
    toJson(): any;
    clone(): ConverterTransform;
}
