using System;
using System.Runtime.InteropServices;
namespace System.ComponentModel.Design
{
/// Represents the method that will handle the , , , and events raised for component-level events.
/// The source of the event.
/// A that contains the event data.
// Token: 0x0200031D RID: 797
// (Invoke) Token: 0x06001C4D RID: 7245
[ComVisible(true)]
public delegate void ComponentEventHandler(object sender, ComponentEventArgs e);
}