import { z } from 'zod'; export declare const pregameQuitEndpoint: { readonly name: "Pre-Game Quit"; readonly description: "Quit the pre-game lobby"; readonly queryName: "Pregame_QuitMatch"; readonly category: "Pre-Game Endpoints"; readonly type: "glz"; readonly method: "POST"; readonly suffix: "pregame/v1/matches/{pre-game match id}/quit"; readonly riotRequirements: { readonly token: true; readonly entitlement: true; }; readonly responses: { readonly '204': z.ZodUndefined; }; };