import type { ColumnDescriptor } from 'tablemark'; export interface TableColumnDefinition extends ColumnDescriptor { getValue: (item: T, context: C) => string; name: string; }