export type ColumnType = "Customer" | "Submission"; export interface IColumnModelAttributes { _id: string; status: string; name: string; type: ColumnType; contents: T[]; }