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