import { z } from 'zod';
/**
 * Zod schema for the IP address tool arguments.
 */
export declare const IpAddressToolArgs: z.ZodObject<{
    includeExtendedData: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
    useHttps: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
}, "strict", z.ZodTypeAny, {
    useHttps: boolean;
    includeExtendedData: boolean;
}, {
    useHttps?: boolean | undefined;
    includeExtendedData?: boolean | undefined;
}>;
/**
 * 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<typeof IpAddressToolArgs>;
