export declare class EventDataModel { /** *
Holds the data of the event emitted.
*/ data: any; /** *Holds the name of the source that emitted the event.
*/ source: string; /** *the tage of the source component in case of multiple instances.
*/ sourceTag: string; /** * It is the constructor for the EventDataModel */ constructor(values?: Object); }