import { PostgresMetaResult, PostgresForeignTable } from './types.js'; export default class PostgresMetaForeignTables { query: (sql: string) => Promise>; constructor(query: (sql: string) => Promise>); list(options: { includedSchemas?: string[]; excludedSchemas?: string[]; limit?: number; offset?: number; includeColumns: false; }): Promise>; list(options?: { includedSchemas?: string[]; excludedSchemas?: string[]; limit?: number; offset?: number; includeColumns?: boolean; }): Promise>; retrieve({ id }: { id: number; }): Promise>; retrieve({ name, schema, }: { name: string; schema: string; }): Promise>; } //# sourceMappingURL=PostgresMetaForeignTables.d.ts.map