export interface InferTableInput { name: string; columns: Array<{ name: string; }>; } export interface InferredRelation { sourceTable: string; sourceColumn: string; targetTable: string; targetColumn: string; } export declare function inferRelations(tables: InferTableInput[]): InferredRelation[]; //# sourceMappingURL=infer-relations.d.ts.map