export interface ActionBase { type: ActionType; actionPayload: ActionPayload; } export interface EventBase { eventType: EventType; eventPayload: EventPayload; } export declare type ChannelEventEmitter> = (input: SomeChannelEvent) => void;