import { z } from 'zod';
export declare const buyerFieldsInterfaceSchema: z.ZodObject<{
    buyerName: z.ZodOptional<z.ZodString>;
    buyerAddress1: z.ZodOptional<z.ZodString>;
    buyerAddress2: z.ZodOptional<z.ZodString>;
    buyerCity: z.ZodOptional<z.ZodString>;
    buyerState: z.ZodOptional<z.ZodString>;
    buyerZip: z.ZodOptional<z.ZodString>;
    buyerCountry: z.ZodOptional<z.ZodString>;
    buyerPhone: z.ZodOptional<z.ZodString>;
    buyerNotify: z.ZodOptional<z.ZodBoolean>;
    buyerEmail: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    buyerName?: string | undefined;
    buyerAddress1?: string | undefined;
    buyerAddress2?: string | undefined;
    buyerCity?: string | undefined;
    buyerState?: string | undefined;
    buyerZip?: string | undefined;
    buyerCountry?: string | undefined;
    buyerPhone?: string | undefined;
    buyerNotify?: boolean | undefined;
    buyerEmail?: string | undefined;
}, {
    buyerName?: string | undefined;
    buyerAddress1?: string | undefined;
    buyerAddress2?: string | undefined;
    buyerCity?: string | undefined;
    buyerState?: string | undefined;
    buyerZip?: string | undefined;
    buyerCountry?: string | undefined;
    buyerPhone?: string | undefined;
    buyerNotify?: boolean | undefined;
    buyerEmail?: string | undefined;
}>;
