import { z } from "zod"; export declare const rtfmInputSchema: z.ZodObject<{ category: z.ZodOptional; tool: z.ZodOptional; }, z.core.$strict>; export type RtfmInput = z.infer; export declare function handleRtfmTool(input: RtfmInput): Promise<{ content: string; }>; export declare const rtfmToolDefinition: { name: string; description: string; inputSchema: { type: "object"; properties?: Record; required?: string[]; }; annotations: { readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; };