import type { InstalledPiApp, PiAppSourceInfo } from "./types.js"; export declare function loadAppIndex(): Promise; export declare function saveAppIndex(apps: readonly InstalledPiApp[]): Promise; export declare function listPiApps(): Promise; export declare function findInstalledApp(appId: string): Promise; export declare function linkPiApp(appDir: string, enabled?: boolean): Promise; export declare function registerManagedPiApp(appDir: string, source: PiAppSourceInfo): Promise; export declare function uninstallPiApp(appId: string): Promise; export declare function managedAppPath(appId: string): string;