/** * update_note tool — Update an existing note's content. * Supports full replacement, appending, or prepending. * Can also update frontmatter fields selectively. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const updateNoteSchema: { path: z.ZodString; content: z.ZodOptional; mode: z.ZodDefault>>; frontmatter: z.ZodOptional>; }; export declare const updateNoteHandler: (vault: Vault) => (input: { path: string; content?: string; mode?: "replace" | "append" | "prepend"; frontmatter?: Record; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=update-note.d.ts.map