import type { SKYKOIConfig } from "../config/config.js"; import { type SkillCommandSpec } from "../koi/skills.js"; export declare function listSkillCommandsForWorkspace(params: { workspaceDir: string; cfg: SKYKOIConfig; skillFilter?: string[]; }): SkillCommandSpec[]; export declare function listSkillCommandsForKois(params: { cfg: SKYKOIConfig; koiIds?: string[]; }): SkillCommandSpec[]; export declare function resolveSkillCommandInvocation(params: { commandBodyNormalized: string; skillCommands: SkillCommandSpec[]; }): { command: SkillCommandSpec; args?: string; } | null;