export interface WorkflowLoopStep { step_id: string; objective: string; primary_command: string; suggested_aliases: string[]; } export interface CoreAgentRecommendation { agent_id: string; command: string; reason: string; score: number; } export interface FrameworkProfile { id: string; title: string; description: string; workflow_loop: WorkflowLoopStep[]; core_agents: string[]; core_modes: string[]; } export declare const CORE_PROFILE_ID = "core"; export declare const CORE_PROFILE: FrameworkProfile; export declare const BUILTIN_FRAMEWORK_PROFILES: Record; export declare function listFrameworkProfiles(): FrameworkProfile[]; export declare function getFrameworkProfile(profileId: string): FrameworkProfile | null; export declare function getCoreProfileStepByAlias(aliasName: string): WorkflowLoopStep | null; export declare function getCoreProfileStepByCommand(commandId: string): WorkflowLoopStep | null; export declare function getCoreProfileNextCommands(limit?: number): string[]; export declare function getCoreProfileAgentRecommendations(intent: string | undefined, limit?: number): CoreAgentRecommendation[];