import { type FieldType } from '../valueObjects/FieldType';
export interface Column {
name: string;
type: FieldType;
sampleValues: any[];
}