/** * Generic and versatile source abstraction * * @class */ export declare class Source { private readonly _data; private readonly _name; /** * @param name {string} The name of the source * @param data {*} The data of the source */ constructor(name: string, data: any); /** * Returns the data of the source. */ readonly data: any; /** * Returns the name of the source. */ readonly name: string; }