import type { GeneratorMetadata } from '../../lib/generators.js'; import type { PostgresSchema, PostgresTable, PostgresType, PostgresView } from '../../lib/index.js'; export declare const apply: ({ schemas, tables, foreignTables, views, materializedViews, columns, relationships, functions, types, detectOneToOneRelationships, postgrestVersion, }: GeneratorMetadata & { detectOneToOneRelationships: boolean; postgrestVersion?: string; }) => Promise; export declare const pgTypeToTsType: (schema: PostgresSchema, pgType: string, { types, schemas, tables, views, }: { types: PostgresType[]; schemas: PostgresSchema[]; tables: PostgresTable[]; views: PostgresView[]; }) => string; //# sourceMappingURL=typescript.d.ts.map