/** Read-only projection of Cordis Loader entries for /plugin. */ import type { Context } from '@deepseek-ai/cordis'; export type PluginPhase = 'pending' | 'loading' | 'active' | 'failed' | 'unloading' | null; export interface PluginRow { readonly entryId: string; readonly moduleName: string; readonly enabled: boolean; readonly phase: PluginPhase; } /** Snapshot the live Loader; group-only rows are composition containers, not plugins. */ export declare function listPluginRows(ctx: Context): PluginRow[];