/** * list_vault tool — Browse the vault's file and folder structure. * Supports recursive listing, depth limits, and extension filtering. */ import { z } from "zod"; import { Vault } from "../vault.js"; export declare const listVaultSchema: { path: z.ZodDefault>; recursive: z.ZodDefault>; maxDepth: z.ZodDefault>; notesOnly: z.ZodDefault>; }; export declare const listVaultHandler: (vault: Vault) => (input: { path?: string; recursive?: boolean; maxDepth?: number; notesOnly?: boolean; }) => Promise<{ content: { type: "text"; text: string; }[]; isError?: boolean; }>; //# sourceMappingURL=list-vault.d.ts.map