import { ReactElement } from 'react'; import { League } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; export type LeagueThumbnailSize = 'small' | 'medium' | 'big'; export type LeagueThumbnailShape = 'text' | 'icon'; export type LeagueThumbnailTheme = 'dark' | 'light'; export interface LeagueThumbnailProps extends WrapperProps { league: League; title?: boolean; size?: LeagueThumbnailSize; shape?: LeagueThumbnailShape; theme?: LeagueThumbnailTheme; } export declare function LeagueThumbnail({ league, title, size, shape, theme, to, onClick, href, target, }: LeagueThumbnailProps): ReactElement;