import type { CommandModule } from "yargs"; export interface LspArgv { stdio: boolean; } /** * `doc-detective lsp` — start the Doc Detective language server. Registered * lazily in `src/cli.ts`: the handler imports the server (and its * `vscode-languageserver` dependency graph) only when this subcommand runs, so * ordinary `runTests` invocations never pay that import cost. */ export declare const lspCommand: CommandModule<{}, LspArgv>; //# sourceMappingURL=command.d.ts.map