import { type SkillInfo } from "./skill-scanner.js"; export interface InstalledPluginScanOptions { agentId: string; /** Override home dir (tests). */ home?: string; } export declare function scanInstalledPluginSkills(opts: InstalledPluginScanOptions): SkillInfo[]; export interface AuthoredPluginScanOptions { agentId: string; projectRoot: string; /** Max directory depth (from projectRoot) at which to discover plugin manifests. */ maxDepth?: number; } export declare function scanAuthoredPluginSkills(opts: AuthoredPluginScanOptions): SkillInfo[];