import { CustomFunctionLogger } from './logger'; import { MexContext } from './mexClient'; /** * Explicit logger construction — the successor to reaching into `input.logger`: * * const logger = new MexLogger(context) * logger.info('...') * * Extends `CustomFunctionLogger`, so it has the same `info`/`debug`/`warn`/`error` surface. It seeds * its MDC context from whatever the `context` carries: an already-configured logger's full context * (preferred — preserves any `setContext`/`configure` keys), otherwise the tenant/user MDC derived * from `userInfo`. */ export declare class MexLogger extends CustomFunctionLogger { constructor(context: MexContext); } //# sourceMappingURL=mexLogger.d.ts.map