import type { ClientConfiguration } from "../types.js"; type PoolConfiguration = { idleTimeout: number; /** * The maximum age of a connection allowed in the pool. * After this age, the connection will be destroyed. * @default 30 minutes */ maximumConnectionAge: number; maximumPoolSize: number; minimumPoolSize: number; }; export declare const createPoolConfiguration: (clientConfiguration: ClientConfiguration) => PoolConfiguration; export {}; //# sourceMappingURL=createPoolConfiguration.d.ts.map