import { OpraHttpError } from '../opra-http-error.js';
/**
 * The server cannot find the requested resource.
 * This can also mean that the endpoint is valid but the resource itself does not exist.
 */
export declare class ResourceNotAvailableError extends OpraHttpError {
    constructor(resource: string, keyValue?: any, cause?: Error);
}
