export * from "./values_checker"; import { IInsertQuery } from "@/common"; import { Base } from "@worker/executors/base"; import { IDBUtil } from "@/worker/idbutil"; export declare class Insert extends Base { query: IInsertQuery; private valuesAffected_; constructor(query: IInsertQuery, util: IDBUtil); execute(beforeInsert: () => Promise): Promise; private insertData_; }