import type { PostgresMetaResult, PostgresRelationship } from './types.js'; export default class PostgresMetaRelationships { query: (sql: string) => Promise>; constructor(query: (sql: string) => Promise>); list({ includeSystemSchemas, includedSchemas, excludedSchemas, }?: { includeSystemSchemas?: boolean; includedSchemas?: string[]; excludedSchemas?: string[]; }): Promise>; } //# sourceMappingURL=PostgresMetaRelationships.d.ts.map