import type { JSONObject } from '../../../helpers/json.js'; import { ScalewayError } from '../scw-error.js'; import { ResourceNotFoundError } from '../standard/resource-not-found-error.js'; /** * UnknownResource error is only returned by the instance API. * * @public */ export declare const mapUnknownResourceFromJSON: (status: number, obj: Readonly) => ResourceNotFoundError | ScalewayError;