import { BaseError } from "./BaseError.js"; /** * This error is thrown when an account could not be found to execute a specific action. It extends the `BaseError` class. */ export declare class AccountNotFoundError extends BaseError { name: string; /** * Constructor for initializing an error message indicating that an account could not be found to execute the specified action. */ constructor(); }