/// import { Image, Wallet } from '@fridaygame/client'; import { WrapperProps } from '@cezembre/fronts'; export type WalletPictureSize = 'small' | 'medium' | 'big' | 'large'; export type WalletPictureTheme = 'dark' | 'light'; export type WalletPictureOutline = 'outline-gold' | 'light-blue'; export interface WalletPictureProps extends WrapperProps { picture?: Image; wallet?: Wallet; size?: WalletPictureSize; theme?: WalletPictureTheme; outline?: WalletPictureOutline; } export declare const WalletPicture: import("react").ForwardRefExoticComponent>;