import type { InternalResource, InternalUrl, ProtocolHandler } from "./types"; /** * Validate that a path is safe (no traversal, no absolute paths). */ export declare function validateRelativePath(relativePath: string): void; /** * Handler for skill:// URLs. */ export declare class SkillProtocolHandler implements ProtocolHandler { readonly scheme = "skill"; readonly immutable = true; resolve(url: InternalUrl): Promise; }