import { SelectedSummaries } from "./selected-summaries"; export interface ColumnDefinition { AggregateFunction: null | string | null; ColumnName: null | string | null; DisplayName: null | string | null; Format: null | string | null; SelectedSummaries: SelectedSummaries | null; Width: number | null; VisibleIndex?: number; }