import * as pg from '@prisma/pg-worker'; import type { SqlDriverAdapter } from '@prisma/driver-adapter-utils'; import type { SqlDriverAdapterFactory } from '@prisma/driver-adapter-utils'; export declare class PrismaPg implements SqlDriverAdapterFactory { private readonly config; private readonly options?; readonly provider = "postgres"; readonly adapterName: string; constructor(config: pg.PoolConfig, options?: PrismaPgOptions | undefined); connect(): Promise; } declare type PrismaPgOptions = { schema?: string; }; export { }