import { z } from 'zod';
declare const IpAddressToolArgs: z.ZodObject<{
    ipAddress: z.ZodOptional<z.ZodString>;
    includeExtendedData: z.ZodOptional<z.ZodBoolean>;
    useHttps: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
    useHttps?: boolean | undefined;
    includeExtendedData?: boolean | undefined;
    ipAddress?: string | undefined;
}, {
    useHttps?: boolean | undefined;
    includeExtendedData?: boolean | undefined;
    ipAddress?: string | undefined;
}>;
type IpAddressToolArgsType = z.infer<typeof IpAddressToolArgs>;
export { IpAddressToolArgs, type IpAddressToolArgsType };
