import type { LoggingService } from '../services/infrastructure/logging.service.js'; declare const workerLevels: { readonly error: 0; readonly warn: 1; readonly info: 2; readonly debug: 3; }; type WorkerLogLevel = keyof typeof workerLevels; export type WorkerLoggingServiceOptions = { level?: WorkerLogLevel; logPath?: string; workspaceRoot?: string; }; /** * Creates a logging service that mirrors the server logger but targets the worker context. */ export declare function createWorkerLoggingService(options?: WorkerLoggingServiceOptions): LoggingService; export {};