import type { Kysely } from 'kysely'; import type { ActualState } from './types.js'; /** * Introspects the current database schema by querying PostgreSQL system catalogs. * Returns the actual state of all public tables, columns, foreign keys, indexes, * and check constraints. */ export declare function introspect(db: Kysely): Promise; //# sourceMappingURL=introspect.d.ts.map