/** * MCP Normalize Tools * * Tools for normalizing inputs (user stories, features, etc.) */ import type { ToolDefinition } from './index.js'; /** * Register normalize tools */ export declare function registerNormalizeTools(): ToolDefinition[]; /** * Handle normalize tool calls */ export declare function handleNormalizeTool(name: string, args: Record): Promise<{ content: Array<{ type: 'text'; text: string; }>; }>; //# sourceMappingURL=normalize.d.ts.map