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

export type Events = {};
