import { XslTransformationFile, Parameter } from "./../index";
export interface XslTransformationResourcesInterface {
    file?: Array<XslTransformationFile>;
}
export declare class XslTransformationResources implements XslTransformationResourcesInterface, Parameter {
    file?: Array<XslTransformationFile>;
    constructor(data: any);
    static getFileDefault(): Array<XslTransformationFile>;
    static getFileDescription(): string;
    static fromJson(data: any): XslTransformationResources;
    toJson(): any;
    clone(): XslTransformationResources;
}
