export interface Behavior { name: string; filename: string; active: boolean; category: string; priority: string; content: string; summary: string; } export declare function listBehaviors(): Behavior[]; export declare function toggleBehavior(name: string): boolean; export declare function addBehavior(name: string, content: string): void; export declare function updateBehavior(name: string, content: string): void; export declare function removeBehavior(name: string): void; export declare function compileBehaviors(): string; export declare function injectBehaviors(): { injected: number; path: string; };