import type { Connection } from 'vscode-languageserver'; import type { LanguageServerOptions } from '../../types.js'; import { type LoggingService } from '../infrastructure/logging.service.js'; export declare class WorkspaceOptionsService { #private; constructor(connection: Connection, loggingService: LoggingService); setSupportsWorkspaceConfiguration(supported: boolean): void; updateGlobalOptions(settings: unknown): void; clearCache(): void; delete(resource: string): void; getOptions(resource: string): Promise; }