import { ConnectionPool } from "mssql"; import { MssqlTransaction } from "."; import { IHash } from "./interface/iHash"; export declare class Delete { static delete(conn: ConnectionPool, pars: { data: IHash; database?: string; chema?: string; table: string; onlyDeleteByPrimaryKey?: boolean; }, tran?: MssqlTransaction): Promise; static deleteByWhere(conn: ConnectionPool, pars: { where?: {}; database?: string; chema?: string; table: string; }, tran?: MssqlTransaction): Promise; }