export type ParticipantRemoved = {
  type: 'participant_removed'
  data: {
    conversationId: string
    participantId: string
  }
}
