import type { StreamOptions } from "morgan"; /** * Creates a Morgan stream options object that routes log output based on the logging mode. When console logging is active, output goes to stdout with a timestamp * prefix. When file logging is active, output goes to the file logger which adds its own timestamp. * @returns StreamOptions object for Morgan configuration. */ export declare function createMorganStream(): StreamOptions;