import { type DatabaseClient } from "../../../../core/databaseClient.js"; interface RelationKeyInfos { fkColumn: string; fkType: string; nullable: boolean; targetColumn: string; targetType: string; } interface FetchRelationshipsInfosResult { fkTable: string; id: string; keys: Array; targetTable: string; } export declare function fetchDatabaseRelationships(client: DatabaseClient): Promise; export {};