import type { IncomingMessage as HttpRequest, ServerResponse } from "node:http"; import { type ParsedRoute } from "./route-helpers.js"; import type { ApiContext } from "./api.js"; /** Every installed skill with its description. Shared with global search, which * needs the values rather than a written response. */ export declare function listSkills(): { name: string; description: string; }[]; /** `/api/skills*` routes. See route-helpers.ts for the domain-module contract. */ export declare function handleSkillsApi(req: HttpRequest, res: ServerResponse, route: ParsedRoute, _context: ApiContext): Promise; //# sourceMappingURL=skills-api.d.ts.map