import { PostgresMetaResult, PostgresView } from './types.js'; export default class PostgresMetaViews { query: (sql: string) => Promise>; constructor(query: (sql: string) => Promise>); list({ includeSystemSchemas, includedSchemas, excludedSchemas, limit, offset, includeColumns, }?: { includeSystemSchemas?: boolean; 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=PostgresMetaViews.d.ts.map