import { z } from 'zod'; export declare const partyRequestEndpoint: { readonly name: "Party Request"; readonly description: "Requests to join the specified party ID"; readonly queryName: "Party_RequestToJoinParty"; readonly category: "Party Endpoints"; readonly type: "glz"; readonly method: "POST"; readonly suffix: "parties/v1/parties/{party id}/request"; readonly riotRequirements: { readonly token: true; readonly entitlement: true; }; readonly responses: { readonly '200': z.ZodUnknown; }; }; export type PartyRequestResponse = z.input;