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

export type Events = {
  event: { test: boolean };
};
