export declare class TransactionScope { private static instance; private asyncLocalStorage; private constructor(); static getInstance(): TransactionScope; run(transactionId: string, fn: () => T): T; getTransactionId(): string | undefined; }