import { z } from 'zod'; /** * Output format options for API responses * - toon: Token-Oriented Object Notation (default, more token-efficient for LLMs) * - json: Standard JSON format */ export declare const OutputFormat: z.ZodOptional>; /** * Zod schema for the IP address tool arguments. */ export declare const IpAddressToolArgs: z.ZodObject<{ includeExtendedData: z.ZodDefault>; useHttps: z.ZodDefault>; jq: z.ZodOptional; outputFormat: z.ZodOptional>; }, z.core.$strict>; /** * TypeScript type inferred from the IpAddressToolArgs Zod schema. * This represents the optional arguments passed to the tool handler and controller. */ export type IpAddressToolArgsType = z.infer;