export interface PluginPack { name: string; description: string; detectPattern: string[]; systemPromptAddition: string; toolHints: string[]; conventions: string[]; } export declare const PLUGIN_PACKS: Record; export declare function detectActivePacks(cwd: string): Promise; export declare function getPackSystemPrompt(cwd: string): Promise; export declare function listPluginPacks(): Promise; export declare function installPluginPack(packName: string, cwd: string): Promise; //# sourceMappingURL=plugin-packs.d.ts.map