import type { KintoneRestAPIClient } from "@kintone/rest-api-client"; import type { RecordSchema } from "../types/schema"; import type { LocalRecordRepository } from "./interface"; export declare const upsertRecords: (apiClient: KintoneRestAPIClient, app: string, recordSource: LocalRecordRepository, schema: RecordSchema, updateKeyCode: string, { attachmentsDir, skipMissingFields, }: { attachmentsDir?: string; skipMissingFields?: boolean; }) => Promise;