import { type PluginIndexEntry } from './index-store.js'; export interface InstalledPlugin { name: string; version: string | null; ref: string | null; commit: string | null; source: string | null; sourceType: PluginIndexEntry['sourceType'] | null; dir: string; } export interface ListInstalledPluginsDeps { roots?: string[]; indexPath?: string; } export declare function listInstalledPlugins(deps?: ListInstalledPluginsDeps): InstalledPlugin[]; export declare function formatPluginVersion(p: InstalledPlugin): string;