import { z } from 'zod'; export declare const partyRemovePlayerEndpoint: { readonly name: "Party Remove Player"; readonly description: "Remove a player from the current party"; readonly queryName: "Party_RemovePlayer"; readonly category: "Party Endpoints"; readonly type: "glz"; readonly suffix: "parties/v1/players/{puuid}"; readonly method: "DELETE"; readonly riotRequirements: { readonly token: true; readonly entitlement: true; }; readonly responses: { readonly '204': z.ZodUndefined; }; };