import { Skill } from "./types.js"; /** * Clone `repoUrl` into an in-memory Volume, find every SKILL.md, then write * only those files to a fresh subdirectory inside `os.tmpdir()`. * * Returns: * - `skills` — parsed Skill objects whose `.path` points into `sandboxDir` * - `sandboxDir` — the temporary directory to pass back to the caller for cleanup */ export declare function discoverSkillsInSandbox(repoUrl: string): Promise<{ skills: Array; sandboxDir: string; }>;