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

export type Events = {
  chartClick: { label?: string; value?: any }[];
};
