/** * daily_note tool — Get or create daily notes by date. * Uses configurable folder and date format. * Supports today, yesterday, tomorrow, or arbitrary dates. */ import { z } from "zod"; import { Vault } from "../vault.js"; import { Config } from "../config.js"; export declare const dailyNoteSchema: { action: z.ZodEnum<{ append: "append"; get: "get"; create: "create"; }>; date: z.ZodOptional; content: z.ZodOptional; frontmatter: z.ZodOptional>; }; export declare const dailyNoteHandler: (vault: Vault, config: Config) => (input: { action: "get" | "create" | "append"; date?: string; content?: string; frontmatter?: Record; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=daily-note.d.ts.map