/** * This class represents an error that has been thrown by the driver */ declare class MillenniumDBError extends Error { constructor(message: string); } export default MillenniumDBError;