import { z } from 'zod'; export declare namespace UpdateStatusAuthPigFarmCommand { const RequestSchema: z.ZodObject, "strip", z.ZodTypeAny, { status: boolean; }, { status: boolean; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ status: z.ZodBoolean; }, "strip", z.ZodTypeAny, { status: boolean; }, { status: boolean; }>; type Response = z.infer; }