import type { KintoneRestAPIError } from "./KintoneRestAPIError";
export declare class KintoneAllRecordsError extends Error {
    processedRecordsResult: any;
    unprocessedRecords: any[];
    error: KintoneRestAPIError;
    errorIndex?: number;
    numOfProcessedRecords: number;
    numOfAllRecords: number;
    private static parseErrorIndex;
    private static extractErrorIndex;
    private static buildErrorMessage;
    constructor(processedRecordsResult: any, unprocessedRecords: any[], numOfAllRecords: number, error: KintoneRestAPIError, chunkLength: number);
}
