/** * @pwngh/economy-lab * * Copyright (c) Preston Neal * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. * * @license MIT */ import type { PgPool } from '../../src/engines/postgres.js'; /** * A {@link PgPool} whose wire protocol is postgres.js instead of pg. Mirrors the engine's pg * configuration: int8 and numeric columns as exact BigInt, search_path pinned per connection * when a schema name is given, undefined parameters as NULL (pg's behavior; postgres.js refuses * them raw). */ export declare function postgresJsPool(options: { url: string; schemaName?: string; max?: number; connectionTimeoutMillis?: number; }): Promise;