/** * delete_note tool — Delete a note from the vault. * By default, moves to .trash/ (Obsidian convention) instead of permanent delete. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const deleteNoteSchema: { path: z.ZodString; permanent: z.ZodDefault>; }; export declare const deleteNoteHandler: (vault: Vault) => (input: { path: string; permanent?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=delete-note.d.ts.map