import { z } from 'zod'; export declare namespace SubmitReportCommand { const url: (uuid: string) => string; const TSQ_url: string; const endpointDetails: import("../../constants").EndpointDetails; const RequestSchema: z.ZodObject<{ uuid: z.ZodString; targets: z.ZodArray, "many">; }, "strip", z.ZodTypeAny, { targets: { uuid: string; isOk: boolean; }[]; uuid: string; }, { targets: { uuid: string; isOk: boolean; }[]; uuid: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ isSubmitted: z.ZodBoolean; }, "strip", z.ZodTypeAny, { isSubmitted: boolean; }, { isSubmitted: boolean; }>; }, "strip", z.ZodTypeAny, { response: { isSubmitted: boolean; }; }, { response: { isSubmitted: boolean; }; }>; type Response = z.infer; } //# sourceMappingURL=submit-report.command.d.ts.map