export interface AgentSkillTarget { name: string; detectDir: string; skillsSubpath: string; displayName: string; } export declare const WPSCLI_SKILL_DIR_NAME = "wpscli"; export declare const WPSCLI_LEGACY_SKILL_DIR_NAMES: readonly ["wpscli-online"]; export declare const AGENT_SKILL_INSTALL_TARGETS: readonly AgentSkillTarget[]; export declare const AGENT_SKILL_LEGACY_CLEANUP_TARGETS: readonly AgentSkillTarget[]; export declare const AGENT_SKILL_TARGETS: readonly AgentSkillTarget[]; export declare function findAgentSkillTarget(name: string): AgentSkillTarget | undefined; export declare function listSupportedAgentNames(): string[];