import { z } from "zod";
export declare const UpdateShopSchema: z.ZodObject<{
    name: z.ZodString;
}, z.core.$strip>;
export type UpdateShopInput = z.infer<typeof UpdateShopSchema>;
