import { z } from 'zod'; export declare namespace GetShopsCommand { const ResponseGetShopsSchema: z.ZodObject<{ type: z.ZodEnum<["success", "error"]>; shops: z.ZodArray, "many">; message: z.ZodOptional; }, "strip", z.ZodTypeAny, { type: "success" | "error"; shops: { id: number; name: string; url: string; }[]; message?: string | undefined; }, { type: "success" | "error"; shops: { id: number; name: string; url: string; }[]; message?: string | undefined; }>; type IGetShopsResponse = z.infer; } //# sourceMappingURL=get-shops.command.d.ts.map