export interface Column {
  id: string;
  child: {
    dataType: string;
    isFlat: boolean;
    valueField: string;
  };
}
