import { z } from 'zod';
export declare const itemInterfaceSchema: z.ZodObject<{
    id: z.ZodOptional<z.ZodString>;
    description: z.ZodOptional<z.ZodString>;
    price: z.ZodNumber;
    quantity: z.ZodNumber;
}, z.core.$strip>;
