import { z } from 'zod'; export declare const docsTools: { '0g_docs': { description: string; inputSchema: z.ZodObject<{ topic: z.ZodString; query: z.ZodOptional; }, "strip", z.ZodTypeAny, { topic: string; query?: string | undefined; }, { topic: string; query?: string | undefined; }>; handler: (input: { topic: string; query?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; '0g_sdk_help': { description: string; inputSchema: z.ZodObject<{ sdk: z.ZodEnum<["storage", "compute", "chain"]>; method: z.ZodOptional; }, "strip", z.ZodTypeAny, { sdk: "storage" | "compute" | "chain"; method?: string | undefined; }, { sdk: "storage" | "compute" | "chain"; method?: string | undefined; }>; handler: (input: { sdk: string; method?: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; '0g_examples': { description: string; inputSchema: z.ZodObject<{ pattern: z.ZodEnum<["upload-file", "download-file", "kv-store", "ai-inference", "deploy-contract", "token-gated-storage"]>; }, "strip", z.ZodTypeAny, { pattern: "upload-file" | "download-file" | "kv-store" | "ai-inference" | "deploy-contract" | "token-gated-storage"; }, { pattern: "upload-file" | "download-file" | "kv-store" | "ai-inference" | "deploy-contract" | "token-gated-storage"; }>; handler: (input: { pattern: string; }) => Promise<{ content: { type: "text"; text: string; }[]; }>; }; }; //# sourceMappingURL=docs.d.ts.map