/** *
This class presents a mapping between two components.
*/ export declare class EventMappingModel { /** *The name of the source Event
*/ output: string; /** *The tag of the source event in case of multiple instances.
*/ outputTag: string; /** *The property in the emitted event.
*/ outputProperty: string; /** *The target of the emitted event.
*/ input: string; /** *The tag of the target component in case of multiple instances.
*/ inputTag: string; /** *The property to map to in the target component.
*/ inputProperty: string; /** * It is the constructor for the mapping class. It takes the required string values to create the mapping object */ constructor(values?: Object); }