export interface RelationshipPairBucket { csvPath: string; rowCount: number; } export interface RelationshipPairBucketResult { relHeader: string; buckets: Map; skippedRels: number; totalValidRels: number; } export declare function bucketRelationshipLines(lines: string[], getNodeLabel: (id: string) => string): Promise>; export declare function streamRelationshipPairBucketsFromCsv(params: { relCsvPath: string; csvDir: string; validTables: Set; getNodeLabel: (nodeId: string) => string; }): Promise;