import { IExpression } from "../../ExpressionBuilder/Expression/IExpression"; import { IObjectType } from "../../Common/Type"; import { SelectExpression } from "./SelectExpression"; import { EntityExpression } from "./EntityExpression"; import { IQueryExpression } from "./IQueryExpression"; import { IColumnExpression } from "./IColumnExpression"; import { IQueryOption } from "../../Query/IQueryOption"; export declare class InsertIntoExpression implements IQueryExpression { entity: EntityExpression; select: SelectExpression; option: IQueryOption; readonly type: any; readonly paramExps: import("./SqlParameterExpression").SqlParameterExpression[]; readonly columns: IColumnExpression[]; constructor(entity: EntityExpression, select: SelectExpression); clone(replaceMap?: Map): InsertIntoExpression; toString(): string; hashCode(): number; getEffectedEntities(): IObjectType[]; }