import type { NeonHttpDatabase } from 'drizzle-orm/neon-http'; import type { NeonDatabase } from 'drizzle-orm/neon-serverless'; import type { PostgresJsDatabase } from 'drizzle-orm/postgres-js'; export type PostgresClient = { query: NeonHttpDatabase; transaction: NeonDatabase; } | { query: PostgresJsDatabase; transaction: PostgresJsDatabase; }; export declare const createPostgres: (connectionString: string) => PostgresClient;