import { z } from 'zod'; export declare namespace RegisterCommand { const url: "/api/auth/register"; const TSQ_url: "/api/auth/register"; const endpointDetails: import("../../constants").EndpointDetails; const RequestSchema: z.ZodObject<{ username: z.ZodString; password: z.ZodString; }, "strip", z.ZodTypeAny, { username: string; password: string; }, { username: string; password: string; }>; type Request = z.infer; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ accessToken: z.ZodString; }, "strip", z.ZodTypeAny, { accessToken: string; }, { accessToken: string; }>; }, "strip", z.ZodTypeAny, { response: { accessToken: string; }; }, { response: { accessToken: string; }; }>; type Response = z.infer; } //# sourceMappingURL=register.command.d.ts.map