import { Connection } from "mysql2/promise"; export declare class Update { static update(conn: Connection, pars: { data: {}; database?: string; table: string; saveDate?: string | Date; saveBy?: string; }): Promise; static updateByWhere(conn: Connection, pars: { data: {}; where?: {}; database?: string; table: string; saveDate?: string | Date; saveBy?: string; }): Promise; }