import { z } from 'zod'; export declare const searchDocsSchema: { query: z.ZodString; limit: z.ZodDefault; }; export declare function searchDocs(args: { limit: number; query: string; }): { content: { type: "text"; text: string; }[]; };