/** * TableRelationship Component * * Renders a foreign key relationship between tables as a subtle * gravitational link line. */ import type { TableRelationship as TableRelationshipType, Vector3D } from '../../types/index.js'; export interface TableRelationshipProps { /** Relationship data */ relationship: TableRelationshipType; /** Source table position */ sourcePosition: Vector3D; /** Target table position */ targetPosition: Vector3D; /** Whether either table is selected */ isHighlighted?: boolean; } export declare function TableRelationship({ relationship, sourcePosition, targetPosition, isHighlighted, }: TableRelationshipProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=TableRelationship.d.ts.map