/** * read_note tool — Read a note's content, frontmatter, tags, and metadata. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const readNoteSchema: { path: z.ZodString; includeRaw: z.ZodDefault>; }; export declare const readNoteHandler: (vault: Vault) => (input: { path: string; includeRaw?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=read-note.d.ts.map