import { default as GroupBy } from './GroupBy'; import { default as ColumnRef } from './ColumnRef'; export default class SelectStatementItem { id: string; alias: string | null; expression: string | null; groupBy: GroupBy | null; output: boolean; column: ColumnRef | null; }