import { default as ObjectRef } from './ObjectRef'; import { default as SelectStatement } from './SelectStatement'; import { default as Join } from './Join'; export default interface TableSource { id: string; alias: string | null; objectRef: ObjectRef; subQuery: SelectStatement | null; joins: Join[]; } export declare const newTableSource: (objectRef: ObjectRef) => TableSource;