import { z } from 'zod'; export declare const authRequestEndpoint: { readonly name: "Auth Request"; readonly description: string; readonly category: "Authentication Endpoints"; readonly type: "other"; readonly suffix: "https://auth.riotgames.com/api/v1/authorization"; readonly method: "PUT"; readonly headers: Map; readonly body: z.ZodObject<{ type: z.ZodLiteral<"auth">; username: z.ZodString; password: z.ZodString; remember: z.ZodBoolean; language: z.ZodLiteral<"en_US">; }, "strip", z.ZodTypeAny, { type: "auth"; username: string; password: string; remember: boolean; language: "en_US"; }, { type: "auth"; username: string; password: string; remember: boolean; language: "en_US"; }>; };