import { KintoneRestAPIError } from "@kintone/rest-api-client"; export declare abstract class CliKintoneError extends Error { readonly message: string; readonly detail: string; readonly cause: unknown; protected constructor(message: string, cause: unknown); protected _toStringCause(): string; private _toStringKintoneAllRecordsError; protected _toStringKintoneRestAPIError(error: KintoneRestAPIError): string; private _isNetworkError; private _toStringNetworkError; toString(): string; }