import { BaseError } from "./BaseError.js"; /** * Error class representing a "Chain Not Found" error, typically thrown when no chain is supplied to the client. */ export declare class ChainNotFoundError 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. */ constructor(); }