import BaseError from './BaseError'; interface InvalidServerFeaturesErrorConstructorOptions { message?: string; } /** Error thrown when the db server has an invalid feature set */ declare class InvalidServerFeaturesError extends BaseError { constructor({ message, }?: InvalidServerFeaturesErrorConstructorOptions); } export default InvalidServerFeaturesError;