import { PostgresMetaResult, PostgresType } from './types.js'; export default class PostgresMetaTypes { query: (sql: string) => Promise>; constructor(query: (sql: string) => Promise>); list({ includeTableTypes, includeArrayTypes, includeSystemSchemas, includedSchemas, excludedSchemas, limit, offset, }?: { includeTableTypes?: boolean; includeArrayTypes?: boolean; includeSystemSchemas?: boolean; includedSchemas?: string[]; excludedSchemas?: string[]; limit?: number; offset?: number; }): Promise>; } //# sourceMappingURL=PostgresMetaTypes.d.ts.map