import { AsyncLocalStorage } from 'async_hooks';

declare const asyncLocalStorage: AsyncLocalStorage<{
    traceId: string;
}>;
declare function withTraceId(traceId: string, fn: () => void): void;

export { asyncLocalStorage, withTraceId };
