import type { ClientBase } from 'pg'; import type { PgIntrospectionResultByKind } from './pg-types'; interface IntrospectOptions { schemas: string[]; includeExtensions?: boolean; pgEnableTags?: boolean; pgThrowOnMissingSchema?: boolean; } export declare const introspect: (pgClient: ClientBase, { schemas, includeExtensions, pgEnableTags, pgThrowOnMissingSchema }: IntrospectOptions) => Promise; export {};