import { type AgentCapabilityProfile, type ToolCapabilityRecord } from "./types.js"; export declare const UNKNOWN_AGENT_CAPABILITY_PROFILE: AgentCapabilityProfile; export declare const AGENT_CAPABILITY_PROFILES: readonly AgentCapabilityProfile[]; /** * Resolve the first static Hivemind seed profile matching an agent name. * The result is a bootstrap hint only; runtime correctness is owned by the later ToolIntelligenceEngine. */ export declare function resolveSeedProfileForAgent(agentName: string): AgentCapabilityProfile; /** * Expand a seed profile's category and explicit tool assignments against the canonical capability map. */ export declare function resolveToolsForSeedProfile(profile: AgentCapabilityProfile, toolCapabilityMap: ReadonlyMap): string[]; //# sourceMappingURL=agent-capability-profiles.d.ts.map