import { z } from "zod"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ title: z.ZodString; body: z.ZodDefault; project: z.ZodOptional; tags: z.ZodDefault>; }, "strip", z.ZodTypeAny, { title: string; tags: string[]; body: string; project?: string | undefined; }, { title: string; project?: string | undefined; tags?: string[] | undefined; body?: string | undefined; }>; interface Output { slug: string; path: string; created: true; } /** * Create a new cortex-authored note. Writes a markdown file to * `//.md` with YAML frontmatter, * which the existing obsidian adapter will pick up on its next * sweep + index into engram. */ export declare const noteCreate: McpTool; export {}; //# sourceMappingURL=note-create.d.ts.map