/**
 * A collaborator of the document.
 */
export type User = {
  id: string;
  username: string;
  avatarUrl: string;
};
