export type ZodErrorItem = {
    [key: string]: {
        expected: string;
        code: string;
        path: string[];
        message: string;
    }[];
};
