import * as z from "zod/v3"; export type NicknameObject = { /** * An alias to represent a player. */ nickname: string; }; /** @internal */ export type NicknameObject$Outbound = { nickname: string; }; /** @internal */ export declare const NicknameObject$outboundSchema: z.ZodType; export declare function nicknameObjectToJSON(nicknameObject: NicknameObject): string; //# sourceMappingURL=nicknameobject.d.ts.map