import { MysqlUpdateParams, TTable, MysqlUpdateRes, TSentence, MysqlUpdateKey } from '../index';
declare function fetchUpdate(table: TTable, uniKey: string | number | MysqlUpdateKey, params: MysqlUpdateParams): Promise<MysqlUpdateRes>;
declare function fetchUpdate(table: TTable, uniKey: string | number | MysqlUpdateKey, params: MysqlUpdateParams, query: TSentence): Promise<string>;
export default fetchUpdate;
