import type { Connection } from 'vscode-languageserver'; import type { LogLevel } from '../shared/log-level.js'; export interface StylelintLanguageServerOptions { connection: Connection; logLevel?: LogLevel; logPath?: string; } export declare class StylelintLanguageServer { #private; constructor(options: StylelintLanguageServerOptions); start(): Promise; dispose(): Promise; }