export interface FallbackInsertStats { attempted: number; succeeded: number; failed: number; } export interface ReplayFallbackInsert { fromId: string; toId: string; fromLabel: string; toLabel: string; relType: string; confidence: number; reason: string; step: number; } export interface ReplayFallbackOptions { validTables: Set; getNodeLabel: (id: string) => string; insertRelationship: (input: ReplayFallbackInsert) => Promise; } export declare function replayFallbackRelationships(validRelLines: string[], options: ReplayFallbackOptions): Promise;