import { ReactElement } from 'react'; import { Player } from '@fridaygame/client'; import { To } from 'react-router-dom'; import { WrapperProps } from '@cezembre/fronts'; import { ClubThumbnailTheme } from '../clubs'; export type PlayerThumbnailSize = 'small' | 'medium' | 'big' | 'full'; export type PlayerThumbnailTheme = 'dark' | 'light'; export interface PlayerThumbnailProps extends WrapperProps { player: Player; size?: PlayerThumbnailSize; theme?: ClubThumbnailTheme; clubTo?: To; } export declare function PlayerThumbnail({ player, size, theme, to, onClick, href, target, clubTo, }: PlayerThumbnailProps): ReactElement;