export type PrivateRoomEvent = | { type: "PrivateRoomInit" } | { type: "PrivateRoomRefresh" } | { type: "PrivateRoomLoadMore" } | { type: "PrivateRoomUnlockRequested"; momentId: string } | { type: "PrivateRoomUnlockConfirmed" } | { type: "PrivateRoomUnlockCancelled" } | { type: "PrivateRoomUnlockPaywallConsumed" };