import { Connection } from 'vscode-languageserver'; import winston from 'winston'; import { FactoryRegistration } from '../../../di/index.js'; import { type LoggingService } from './logging.service.js'; import type { LogLevel } from '../../../shared/log-level.js'; export declare const winstonToken: import("../../../di/tokens.js").Token; /** * Creates a Winston-based logging service. */ export declare function createWinstonLoggingService(level?: LogLevel, logPath?: string): FactoryRegistration;