import { type Convention, type DevFlowPlugin } from "@devflow-tools/sdk"; interface HintChoice { name: string; value: string; checked: boolean; } interface HintRecord { id: string; pluginName: string; convention: Convention; } export interface PluginMemoryHintDependencies { isTTY?: boolean; load?: () => Promise>; select?: (choices: HintChoice[]) => Promise; write?: (projectRoot: string, hints: HintRecord[]) => Promise; } export declare function reviewPluginMemoryHints(projectRoot: string, names: string, dependencies?: PluginMemoryHintDependencies): Promise<{ available: number; selected: number; }>; export {}; //# sourceMappingURL=plugin-memory-hints.d.ts.map