import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ slug: z.ZodString; title: z.ZodOptional; body: z.ZodOptional; project: z.ZodOptional; tags: z.ZodOptional>; }, "strip", z.ZodTypeAny, { slug: string; project?: string | undefined; title?: string | undefined; tags?: string[] | undefined; body?: string | undefined; }, { slug: string; project?: string | undefined; title?: string | undefined; tags?: string[] | undefined; body?: string | undefined; }>; interface Output { slug: string; path: string; updated: boolean; /** False when the patch was a no-op (content already matched). */ changed: boolean; } /** * Patch fields on an existing cortex-authored note. Idempotent — * if the resulting content is identical to what's on disk, no write * happens and `changed: false` is returned. */ export declare const noteUpdate: McpTool; export {}; //# sourceMappingURL=note-update.d.ts.map