import { z } from 'zod'; export declare namespace CreateAccessLinkCommand { const url: "/api/access-links/"; const TSQ_url: "/api/access-links/"; const endpointDetails: import("../../constants").EndpointDetails; 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=create-access-link.command.d.ts.map