import { type DiagnosticsService } from "./service.js"; export interface EastLspOptions { service?: DiagnosticsService; input?: NodeJS.ReadableStream; output?: NodeJS.WritableStream; /** Called on `exit`; defaults to `process.exit`. */ exit?: (code: number) => void; } /** Run the East LSP server until the client disconnects. */ export declare function runEastLsp(options?: EastLspOptions): void; //# sourceMappingURL=lsp.d.ts.map