import Model from "../model.js"; import type { ModelBuildOptions } from "../model.js"; export type PrimaryKey = number | string; type QueryObject = { [key: string]: any; }; export default function definePrimaryKeySetter(model: Model, columnName: string, buildObject: QueryObject | Model, buildOptions: ModelBuildOptions, existingInstances: Set): Model; export {};