import type { CustomCell } from "@glideapps/glide-data-grid"; interface ArticleCellProps { readonly kind: "article-cell"; readonly markdown: string; } export type ArticleCell = CustomCell; export {};