///
import { User } from '@fridaygame/client';
import { WrapperProps } from '@cezembre/fronts';
export type UserThumbnailSize = 'small' | 'medium' | 'big';
export type UserThumbnailTheme = 'dark' | 'light';
export interface UserThumbnailProps extends WrapperProps {
user: User;
size?: UserThumbnailSize;
showPicture?: boolean;
showName?: boolean;
theme?: UserThumbnailTheme;
}
export declare const UserThumbnail: import("react").ForwardRefExoticComponent>;