import { RequestHandler } from 'express'; declare const tx: { get(key: string): T | undefined; set(key: string, value: unknown): void; run(fn: () => T | Promise): T | Promise; init(): RequestHandler; }; type Tx = typeof tx; export { type Tx, tx };