import { z } from 'zod'; export declare namespace ReorderTargetCommand { const url: "/api/targets/actions/reorder"; const TSQ_url: "/api/targets/actions/reorder"; const endpointDetails: import("../../constants").EndpointDetails; const RequestSchema: z.ZodObject<{ targets: z.ZodArray; checkMethod: z.ZodNativeEnum<{ readonly TCP16_20: "TCP16_20"; readonly GET: "GET"; }>; checkUrl: z.ZodString; successChecks: z.ZodNumber; failedChecks: z.ZodNumber; createdAt: z.ZodEffects; updatedAt: z.ZodEffects; }, "uuid" | "viewPosition">, "strip", z.ZodTypeAny, { uuid: string; viewPosition: number; }, { uuid: string; viewPosition: number; }>, "many">; }, "strip", z.ZodTypeAny, { targets: { uuid: string; viewPosition: number; }[]; }, { targets: { uuid: string; viewPosition: number; }[]; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ isUpdated: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isUpdated: boolean; }, { isUpdated: boolean; }>; }, "strip", z.ZodTypeAny, { response: { isUpdated: boolean; }; }, { response: { isUpdated: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=reorder.command.d.ts.map