import { default as QueryStatement } from './QueryStatement'; import { default as TableSource } from './TableSource'; import { default as SelectStatementItem } from './SelectStatementItem'; import { default as OrderBy } from './OrderBy'; import { default as Condition } from './Condition'; export declare class SelectStatement extends QueryStatement { id: string; distinct: boolean; items: SelectStatementItem[]; sources: TableSource[]; orderBy: OrderBy[]; whereConditions: Condition[]; where: string | null; having: string | null; havingConditions: Condition[]; limit: number | null; offSet: number | null; } export default SelectStatement;