/** Props for the column. */ interface ColumnProps { /** The unique ID of the column. */ id: string; /** The title to display in the header. */ title: string; } export type { ColumnProps };