import { z } from 'zod'; export declare namespace GetStatusCommand { const url: "/api/auth/status"; const TSQ_url: "/api/auth/status"; const endpointDetails: import("../../constants").EndpointDetails; const ResponseSchema: z.ZodObject<{ response: z.ZodObject<{ isLoginAllowed: z.ZodBoolean; isRegisterAllowed: z.ZodBoolean; tgAuth: z.ZodNullable>; oauth2: z.ZodObject<{ providers: z.ZodRecord, z.ZodBoolean>; }, "strip", z.ZodTypeAny, { providers: Partial>; }, { providers: Partial>; }>; }, "strip", z.ZodTypeAny, { isLoginAllowed: boolean; isRegisterAllowed: boolean; tgAuth: { botId: number; } | null; oauth2: { providers: Partial>; }; }, { isLoginAllowed: boolean; isRegisterAllowed: boolean; tgAuth: { botId: number; } | null; oauth2: { providers: Partial>; }; }>; }, "strip", z.ZodTypeAny, { response: { isLoginAllowed: boolean; isRegisterAllowed: boolean; tgAuth: { botId: number; } | null; oauth2: { providers: Partial>; }; }; }, { response: { isLoginAllowed: boolean; isRegisterAllowed: boolean; tgAuth: { botId: number; } | null; oauth2: { providers: Partial>; }; }; }>; type Response = z.infer; } //# sourceMappingURL=get-status.command.d.ts.map