import PostgresMeta from './PostgresMeta.js'; import { PostgresColumn, PostgresForeignTable, PostgresFunction, PostgresMaterializedView, PostgresMetaResult, PostgresRelationship, PostgresSchema, PostgresTable, PostgresType, PostgresView } from './types.js'; export type GeneratorMetadata = { schemas: PostgresSchema[]; tables: Omit[]; foreignTables: Omit[]; views: Omit[]; materializedViews: Omit[]; columns: PostgresColumn[]; relationships: PostgresRelationship[]; functions: PostgresFunction[]; types: PostgresType[]; }; export declare function getGeneratorMetadata(pgMeta: PostgresMeta, filters?: { includedSchemas?: string[]; excludedSchemas?: string[]; }): Promise>; //# sourceMappingURL=generators.d.ts.map