declare class Player { readonly uuid: string; readonly username: string; readonly properties: PlayerProperty[]; constructor(data: PlayerIdentity); } export type PlayerIdentity = { uuid?: string; id?: string; name: string; properties?: PlayerProperty[]; demo?: boolean; legacy?: boolean; }; export type PlayerProperty = { name: string; value: string; }; export { Player, Player as default }; //# sourceMappingURL=Player.d.ts.map