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

export type Events = {
  clipboardCopyText: { text: string };
};
