/// import { Image, User } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; export type UserPictureSize = 'small' | 'medium' | 'big'; export type UserPictureTheme = 'dark' | 'light'; export interface UserPictureProps extends WrapperProps { picture?: Image; user?: User; size?: UserPictureSize; theme?: UserPictureTheme; } export declare const UserPicture: import("react").ForwardRefExoticComponent>;