export declare const SKILL_BUNDLES: Record; export declare const AGENT_BUNDLES: Record; export interface InstallPlan { skills: string[]; agents: string[]; } export declare function resolvePlan(skillBundle: string, agentBundle: string): InstallPlan;