import React from 'react'; import { AllOrNone, AtLeastOne, Polymorphic } from '@hitagi/utils/types'; import { Wrapper } from './PlayerName.styled'; type AnonymousProps = { anonymous: boolean; stratzPublic: boolean; }; type PlayerNameProps = AtLeastOne<{ pro: boolean; smurfFlag: number | null; caster: boolean; } & AnonymousProps> & AllOrNone & { children: React.ReactNode; rtl?: boolean; noWrap?: boolean; } & React.HTMLAttributes; declare const PlayerName: Polymorphic.Component; export default PlayerName;