import { z } from "zod"; /** * Output for rtfm tool - always returns { content: string } */ export declare const RtfmOutput: z.ZodObject<{ content: z.ZodString; }, z.core.$strip>; export type RtfmOutputType = z.infer;