import { type AnyObject, type FieldFilter, type InsertParams } from "prostgles-types"; import type { TableHandler } from "../TableHandler"; import type { ParsedTableRule, ValidateRowBasic } from "../../../PublishParser/PublishParser"; import type { LocalParams } from "../../DboBuilder"; import type { InsertedRowWithInfo } from "./insert"; export declare const getInsertQuery: ({ rows, tableHandler, forcedData, fields, tableRules, localParams, insertParams, validate, }: { tableHandler: TableHandler; rows: (InsertedRowWithInfo | undefined)[]; forcedData: AnyObject | undefined; fields: FieldFilter | undefined; tableRules: ParsedTableRule | undefined; localParams: LocalParams | undefined; insertParams: InsertParams | undefined; validate: ValidateRowBasic | undefined; }) => Promise; //# sourceMappingURL=getInsertQuery.d.ts.map