import { Metrics } from '@aws-lambda-powertools/metrics'; import { Tracer } from '@aws-lambda-powertools/tracer'; import { Logger } from '@aws-lambda-powertools/logger'; /** * Creating a global instance for the Powertools logger * to be used across the different applications. */ export declare const logger: Logger; /** * Creating a global instance for the Powertools metrics * to be used across the different applications. */ export declare const metrics: Metrics; /** * Creating a global instance for the Powertools tracer * to be used across the different applications. */ export declare const tracer: Tracer;