export declare const postLogger: ({ objeto, }: { objeto: any; }) => Promise<[objeto: any, erro?: string]>; type tipoLevel = "info" | "warn" | "error"; type tipoOpSessao = { inquilino: string; usuario: string; }; type tipoLog = { detalhes?: unknown[]; __filename?: string; local?: string; }; export declare const logger: ({ app, eProducao }: { app: string; eProducao: boolean; }) => ({ inquilino, usuario }: tipoOpSessao) => (level: tipoLevel, mensagem: string, op_tipoLog?: tipoLog) => Promise<[objeto: object, erro?: string]>; export {};