import { z } from "zod"; import { type NoteSummary } from "../../notes/repo.js"; import type { McpTool } from "../tool.js"; declare const inputSchema: z.ZodObject<{ project: z.ZodOptional; limit: z.ZodDefault; }, "strip", z.ZodTypeAny, { limit: number; project?: string | undefined; }, { limit?: number | undefined; project?: string | undefined; }>; interface Output { notes: NoteSummary[]; } /** * Federated listing across the whole obsidian vault. Returns both * cortex-authored notes (kind=cortex, dashboard-editable) and * obsidian-authored notes anywhere else in the vault (kind=obsidian, * read-only in the dashboard). Filesystem-only — no engram round-trip. * Sorted by `updated` desc. */ export declare const noteList: McpTool; export {}; //# sourceMappingURL=note-list.d.ts.map