export declare const logger: import("pino").Logger; export declare const consoleLogger: { debug: (msg: string, ...args: any[]) => void; info: (msg: string, ...args: any[]) => void; warn: (msg: string, ...args: any[]) => void; error: (msg: string, ...args: any[]) => void; }; export declare function setupLogging(logLevel?: string, logFile?: string | null): void; export default logger;