/** * Enhanced Storage Engine Usage Examples * Demonstrates the unified storage capabilities with vector integration */ /** * Basic setup example */ export declare function basicSetupExample(): Promise; /** * Unified data insertion example */ export declare function unifiedInsertExample(): Promise<{ documentId?: string; vectorId?: string; success: boolean; }>; /** * Unified search example */ export declare function unifiedSearchExample(): Promise<{ documents?: any[]; vectorResults?: any[]; timeSeriesPoints?: any[]; hybridResults?: any[]; }>; /** * Bulk operations example */ export declare function bulkOperationsExample(): Promise<{ successful: number; failed: number; errors: Array<{ operation: any; error: string; }>; }>; /** * Performance monitoring example */ export declare function performanceMonitoringExample(): Promise<{ storage: any; vector?: any; middleware: any; overall: { totalOperations: number; averageLatency: number; errorRate: number; healthScore: number; cacheHitRate: number; }; }>; /** * Vector-specific operations example */ export declare function vectorOperationsExample(): Promise<{ vectorResult: import("..").StorageResult; hybridSearch: import("..").StorageResult<{ document: any; vector?: import("packages/vector/types").VectorSearchResult; hybridScore: number; }[]>; batchResult: import("..").StorageResult<{ successful: string[]; failed: Array<{ id: string; error: string; }>; }>; }>; /** * Advanced configuration example */ export declare function advancedConfigurationExample(): Promise; /** * Error handling and resilience example */ export declare function errorHandlingExample(): Promise<{ successful: number; failed: number; errors: Array<{ operation: any; error: string; }>; }>; /** * Cleanup example */ export declare function cleanupExample(): Promise; export declare const examples: { basicSetupExample: typeof basicSetupExample; unifiedInsertExample: typeof unifiedInsertExample; unifiedSearchExample: typeof unifiedSearchExample; bulkOperationsExample: typeof bulkOperationsExample; performanceMonitoringExample: typeof performanceMonitoringExample; vectorOperationsExample: typeof vectorOperationsExample; advancedConfigurationExample: typeof advancedConfigurationExample; errorHandlingExample: typeof errorHandlingExample; cleanupExample: typeof cleanupExample; }; export default examples; //# sourceMappingURL=enhanced-storage-example.d.ts.map