import { z } from 'zod'; export declare namespace GetAccessLinksCommand { const url: "/api/access-links/"; const TSQ_url: "/api/access-links/"; const endpointDetails: import("../../constants").EndpointDetails; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ total: z.ZodNumber; accessLinks: z.ZodArray; updatedAt: z.ZodEffects; }, "strip", z.ZodTypeAny, { uuid: string; createdAt: Date; updatedAt: Date; }, { uuid: string; createdAt: string; updatedAt: string; }>, "many">; }, "strip", z.ZodTypeAny, { total: number; accessLinks: { uuid: string; createdAt: Date; updatedAt: Date; }[]; }, { total: number; accessLinks: { uuid: string; createdAt: string; updatedAt: string; }[]; }>; }, "strip", z.ZodTypeAny, { response: { total: number; accessLinks: { uuid: string; createdAt: Date; updatedAt: Date; }[]; }; }, { response: { total: number; accessLinks: { uuid: string; createdAt: string; updatedAt: string; }[]; }; }>; type Response = z.infer; } //# sourceMappingURL=get-access-links.command.d.ts.map