import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ slug: z.ZodString; }, "strip", z.ZodTypeAny, { slug: string; }, { slug: string; }>; interface Output { slug: string; path: string; deleted: boolean; } /** * Delete a cortex-authored note. Idempotent — `deleted: false` when * the slug didn't match an existing note. The obsidian adapter's * next sweep will remove the corresponding engram memories on its * usual cadence. */ export declare const noteDelete: McpTool; export {}; //# sourceMappingURL=note-delete.d.ts.map