import { ReactElement } from 'react'; import { Image } from '@fridaygame/client'; export type MatchIconSize = 'small' | 'medium' | 'big'; export interface MatchIconProps { icon?: Image; size?: MatchIconSize; } export declare function MatchIcon({ icon, size }: MatchIconProps): ReactElement;