import type { SkillMeta } from "../lib/registry-types.js"; export declare function isValidSkillSlug(slug: string): boolean; /** @deprecated No shared catalog exists. Use the authenticated RemoteSkillsClient. */ export declare function listServerSkills(): SkillMeta[]; /** @deprecated Unscoped lookup cannot select an organization's private skill. */ export declare function getServerSkill(_slug: string): SkillMeta | null; /** @deprecated Unscoped lookup never reads the server's filesystem. */ export declare function getServerSkillMd(_slug: string): string | null;