import { z } from 'zod';
export declare const testZodSchema: z.ZodObject<{
    name: z.ZodString;
    age: z.ZodNumber;
    email: z.ZodString;
    address: z.ZodObject<{
        city: z.ZodString;
        postalCode: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        city?: string;
        postalCode?: string;
    }, {
        city?: string;
        postalCode?: string;
    }>;
}, "strip", z.ZodTypeAny, {
    name?: string;
    address?: {
        city?: string;
        postalCode?: string;
    };
    email?: string;
    age?: number;
}, {
    name?: string;
    address?: {
        city?: string;
        postalCode?: string;
    };
    email?: string;
    age?: number;
}>;
