import { IUpdateQuery } from "@/common"; import { IDBUtil } from "@/worker/idbutil"; import { BaseFetch } from "@executors/base_fetch"; import { executeWhereUndefinedLogic } from "./not_where"; export declare class Update extends BaseFetch { executeWhereUndefinedLogic: typeof executeWhereUndefinedLogic; constructor(query: IUpdateQuery, util: IDBUtil); execute(beforeExecute: () => Promise): Promise; private executeComplexLogic_; private initTransaction; }