/** * @public */ export interface Event { /** * The topic that the event is published on */ topic: string; /** * The event payload */ payload: any | null; }