export interface AgEvent<TEventType extends string = string> {
    /** Event identifier */
    type: TEventType;
}
