import { MockPatternDetector } from '../types/database.types'; export declare const DATABASE_MOCK_PATTERNS: MockPatternDetector[]; /** * ✅ PHASE 1 ENHANCEMENT: Analyze table-level patterns with intelligent batch insert detection */ export declare function analyzeTableLevelPatterns(rows: any[]): Array<{ pattern: string; description: string; severity: 'critical' | 'high' | 'medium'; examples: string[]; }>;