export declare const postLogger: ({ objeto, }: { objeto: any; }) => Promise<[objeto: any, erro?: string]>; /** define a localização da pasta do projeto */ export declare const defineCwd: (novoCwd: string) => void; type tipoLevel = "info" | "warn" | "error"; type tipoOpSessao = { inquilino: string; usuario: string; }; type tipoLog = { detalhes?: unknown[]; __filename?: string; local?: string; parametros?: { [k: string]: string; }; }; export declare const logger: ({ app: app_e, eProducao }: { app: string; eProducao: boolean; }) => ({ inquilino, usuario }: tipoOpSessao) => (level: tipoLevel, mensagem: string, op_tipoLog?: tipoLog) => Promise<[objeto: object, erro?: string]>; export {};