export interface EventSubscription<T> {
    on(callback: (event: T) => void): void;
}
