/** * search_vault tool — Full-text search across all notes. * Supports plain text and regex, with configurable limits and timeouts. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const searchVaultSchema: { query: z.ZodString; regex: z.ZodDefault>; caseSensitive: z.ZodDefault>; folder: z.ZodOptional; maxResults: z.ZodDefault>; }; export declare const searchVaultHandler: (vault: Vault) => (input: { query: string; regex?: boolean; caseSensitive?: boolean; folder?: string; maxResults?: number; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=search-vault.d.ts.map