import type { FastifyLoggerOptions } from "fastify"; export interface ServerLogging { logger: boolean | FastifyLoggerOptions; close(): void; } /** Resolves the dedicated error log beside the managed server configuration. */ export declare function serverErrorLogPath(managedConfigPath: string): string; /** Creates server logging that preserves stdout while duplicating error-level events to a durable file. */ export declare function serverLoggingCreate(enabled: boolean, errorLogPath?: string): ServerLogging; //# sourceMappingURL=logging.d.ts.map