import postgres from 'postgres'; import { I as IBasePostgresConnectionConfig, B as BasePostgresConnection } from './BasePostgresConnection-Di94o0ON.js'; import 'lite-supa'; import 'kysely'; interface IPostgresConnectionConfig extends IBasePostgresConnectionConfig { } declare class PostgresConnection extends BasePostgresConnection { driver: postgres.Sql; dialect: "postgres"; constructor(config: IPostgresConnectionConfig); close(): Promise; } declare function createPostgresConnection(config: IPostgresConnectionConfig): PostgresConnection; export { type IPostgresConnectionConfig, PostgresConnection, createPostgresConnection };