declare enum EventType { expose = "expose", click = "click", cart = "cart", buy = "buy", collect = "collect", like = "like", unlike = "unlike", comment = "comment", share = "share", subscribe = "subscribe", stay = "stay" } interface DataProps { [dataProps: string]: any; } interface BaseProps { data?: DataProps; isPrefab?: boolean; userId: string; } export { EventType, BaseProps };