import type { KlawConfig } from "../config/types.klaw.js"; import type { BundleLspServerConfig } from "../plugins/bundle-lsp.js"; type EmbeddedPiLspConfig = { lspServers: Record; diagnostics: Array<{ pluginId: string; message: string; }>; }; export declare function loadEmbeddedPiLspConfig(params: { workspaceDir: string; cfg?: KlawConfig; }): EmbeddedPiLspConfig; export {};