import { ILogFormatter, LogData } from '../types'; /** * Formats the log in native pino format while * including the Lambda context data automatically */ export declare class PinoLogFormatter implements ILogFormatter { format(data: LogData): string; }