export type PlayerNameFormat = 'initials' | 'reduced' | 'full'; export declare function formatPlayerName(firstName?: string, lastName?: string, format?: PlayerNameFormat): string | undefined;