import { Player } from '../types';

interface PlayerCardProps {
    player: Player;
    id: number;
    onClickFunc: () => void;
    showPosition?: boolean;
    lang: string | null;
}
export default function PlayerCard({ player, id, onClickFunc, showPosition, lang }: PlayerCardProps): import("react/jsx-runtime").JSX.Element;
export {};
