import { z } from 'zod'; export declare namespace GetReportCommand { const url: (uuid: string) => string; const TSQ_url: string; const endpointDetails: import("../../constants").EndpointDetails; const RequestSchema: z.ZodObject<{ uuid: z.ZodString; }, "strip", z.ZodTypeAny, { uuid: string; }, { uuid: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: 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" | "publicName" | "badgeText" | "checkMethod" | "checkUrl">, "strip", z.ZodTypeAny, { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }, { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }>, "many">; }, "strip", z.ZodTypeAny, { targets: { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }[]; }, { targets: { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }[]; }>; }, "strip", z.ZodTypeAny, { response: { targets: { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }[]; }; }, { response: { targets: { uuid: string; publicName: string; badgeText: string | null; checkMethod: "TCP16_20" | "GET"; checkUrl: string; }[]; }; }>; type Response = z.infer; } //# sourceMappingURL=get-report.command.d.ts.map