import { z } from 'zod'; export declare namespace UpdateTargetCommand { const url: (uuid: string) => string; const TSQ_url: string; const endpointDetails: import("../../constants").EndpointDetails; const RequestSchema: z.ZodObject<{ publicName: z.ZodOptional; badgeText: z.ZodOptional; checkMethod: z.ZodOptional>; checkUrl: z.ZodOptional; }, "strip", z.ZodTypeAny, { publicName?: string | undefined; badgeText?: string | undefined; checkMethod?: "TCP16_20" | "GET" | undefined; checkUrl?: string | undefined; }, { publicName?: string | undefined; badgeText?: string | undefined; checkMethod?: "TCP16_20" | "GET" | undefined; checkUrl?: string | undefined; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ uuid: z.ZodString; viewPosition: z.ZodNumber; publicName: z.ZodString; badgeText: z.ZodNullable; 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; }, "strip", z.ZodTypeAny, { uuid: string; createdAt: Date; updatedAt: Date; viewPosition: number; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; successChecks: number; failedChecks: number; }, { uuid: string; createdAt: string; updatedAt: string; viewPosition: number; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; successChecks: number; failedChecks: number; }>; }, "strip", z.ZodTypeAny, { response: { uuid: string; createdAt: Date; updatedAt: Date; viewPosition: number; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; successChecks: number; failedChecks: number; }; }, { response: { uuid: string; createdAt: string; updatedAt: string; viewPosition: number; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; successChecks: number; failedChecks: number; }; }>; type Response = z.infer; } //# sourceMappingURL=update-target.command.d.ts.map