/** * create_note tool — Create a new note with optional frontmatter. * Refuses to overwrite existing notes unless explicitly told to. * Auto-creates parent folders. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const createNoteSchema: { path: z.ZodString; content: z.ZodString; frontmatter: z.ZodOptional>; overwrite: z.ZodDefault>; }; export declare const createNoteHandler: (vault: Vault) => (input: { path: string; content: string; frontmatter?: Record; overwrite?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=create-note.d.ts.map