/** * Defines a base class that represents event arguments for an event. */ export declare class EventArgs { private _sender; /** * Creates a new event args object. * @param sender The object that is emitting the event. */ constructor(sender: any); /** * Gets the object that emitted the event. */ readonly sender: any; }