import type { KintoneRestAPIError } from "@kintone/rest-api-client"; import type { LocalRecord } from "../types/record"; import type { RecordSchema } from "../types/schema"; /** * * @param error * @param chunkSize Chunk size of a single request. See https://github.com/kintone/js-sdk/blob/master/packages/rest-api-client/src/client/RecordClient.ts#L16 * @param records Record of current chunk divided by rest-api-client * @param recordSchema */ export declare const parseKintoneRestAPIError: (error: KintoneRestAPIError, chunkSize: number, records: LocalRecord[], recordSchema: RecordSchema) => string;