export type Component = {
  id?: string;
  style?: string;
};

export type Events = {
  AudioVideoAccess: { granted: boolean; id: string };
  VideoInitialized: { videoElement: HTMLVideoElement; id: string };
};
