import { BaseError } from "./BaseError.js"; /** * Error class representing a "Server Error" error, typically thrown when a server request fails. */ export declare class ServerError extends BaseError { name: string; /** * Initializes a new instance of the error message with a default message indicating that no chain was supplied to the client. * * @param {string} message - The error message. * @param {number} status - The HTTP status code of the error. * @param {Error} cause - The cause of the error. */ constructor(message: string, status: number, cause?: Error); }