import type { ExtensionAPI } from "@earendil-works/pi-coding-agent"; import type { InstalledPackage, Scope } from "../types.js"; export declare function normalizeSource(source: string): string; export type ParsedInstalledPackageEntry = { scope: Scope; source: string; resolvedPath: string; }; export declare function parseInstalledPackagesFromListOutput(text: string): ParsedInstalledPackageEntry[]; export declare function discoverInstalledPackages(pi: ExtensionAPI, cwd: string): Promise; //# sourceMappingURL=discover-installed.d.ts.map