You can use:
type PubSubEvents = { CHANGE_EVENT: string; }
or add an explicit index signature:
interface PubSubEvents { CHANGE_EVENT: string; [event: string]: unknown; }
References: