import { ReactElement } from 'react'; import { WrapperProps } from '@cezembre/fronts'; import { Image } from '@fridaygame/client'; export type LeagueIconSize = 'small' | 'medium' | 'big'; export interface LeagueIconProps extends WrapperProps { icon?: Image; size?: LeagueIconSize; } export declare function LeagueIcon({ icon, size, to, onClick, href, target, }: LeagueIconProps): ReactElement;