import { Parameter, XslTransformationResources } from "./../index";
export interface XslTransformationInterface {
    resources?: XslTransformationResources;
}
export declare class XslTransformation implements XslTransformationInterface, Parameter {
    resources?: XslTransformationResources;
    constructor(data: any);
    static getResourcesDescription(): string;
    static fromJson(data: any): XslTransformation;
    toJson(): any;
    clone(): XslTransformation;
}
