import { z } from 'zod'; export declare namespace GetAccessLinkByUuidCommand { 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<{ uuid: z.ZodString; createdAt: z.ZodEffects; updatedAt: z.ZodEffects; }, "strip", z.ZodTypeAny, { uuid: string; createdAt: Date; updatedAt: Date; }, { uuid: string; createdAt: string; updatedAt: string; }>; }, "strip", z.ZodTypeAny, { response: { uuid: string; createdAt: Date; updatedAt: Date; }; }, { response: { uuid: string; createdAt: string; updatedAt: string; }; }>; type Response = z.infer; } //# sourceMappingURL=get-access-link-by-uuid.d.ts.map