import type { ListItem } from "./customElement.js";

export type ItemData = {
  label: string;
  description: string;
  metadata: Record<string, unknown>;
  el: ListItem;
  heading?: string[];
};