import { BaseError, typeBaseErrorOptions } from"./BaseError.js";
/** Error thrown when functionality is called but is not implemented by an interface. */exportdeclareclassUnimplementedErrorextendsBaseError {
constructor(message?: string, options?: BaseErrorOptions);
}