type tipoAmb = { app: string; inquilino: string; usuario: string; eProducao: boolean; }; type tipoLog = { detalhes?: unknown[]; __filename?: string; }; export declare const logger: ({ inquilino, app, eProducao, usuario }: tipoAmb) => { info: (mensagem: string, op_tipoLog?: tipoLog) => Promise; warn: (mensagem: string, op_tipoLog?: tipoLog) => Promise; error: (mensagem: string, op_tipoLog?: tipoLog) => Promise; }; export {};