import type { SkillMcpArgs, ResolvedOperation } from "./types"; export declare function resolveOperation(args: SkillMcpArgs): ResolvedOperation; export declare function parseArguments(raw: string | Record | undefined): Record; export declare function applyGrepFilter(output: string, pattern: string | undefined): string; export declare function executeSkillMcp(args: SkillMcpArgs): Promise;