import { IHash } from "../interface/iHash"; import { TableSchemaModel } from "../model/SchemaModel"; export declare class Where { static getWhereSQL(where: IHash, tableSchemaModel: TableSchemaModel): { whereSQL: string; whereList: any[]; wherePars: IHash; }; }