/** * SDK-specific error classes */ export declare class MemoryIntelligenceError extends Error { constructor(message: string); } export declare class ConfigurationError extends MemoryIntelligenceError { constructor(message: string); } export declare class MemoryNotFoundError extends MemoryIntelligenceError { constructor(memoryId: string); } export declare class DatabaseError extends MemoryIntelligenceError { originalError?: Error | undefined; constructor(message: string, originalError?: Error | undefined); } export declare class EmbeddingError extends MemoryIntelligenceError { originalError?: Error | undefined; constructor(message: string, originalError?: Error | undefined); } export declare class ValidationError extends MemoryIntelligenceError { constructor(message: string); }