///
import { Wallet } from '@fridaygame/client';
import { WrapperProps } from '@cezembre/fronts';
import { WalletPictureOutline } from './walletPicture';
export type WalletThumbnailSize = 'small' | 'medium' | 'big' | 'large';
export type WalletThumbnailTheme = 'dark' | 'light';
export type WalletThumbnailShape = 'inline' | 'logo';
export interface WalletThumbnailProps extends WrapperProps {
wallet: Wallet;
size?: WalletThumbnailSize;
theme?: WalletThumbnailTheme;
shape?: WalletThumbnailShape;
showPicture?: boolean;
pictureOutline?: WalletPictureOutline;
showName?: boolean;
showAmount?: boolean;
align?: AlignSetting;
}
export declare const WalletThumbnail: import("react").ForwardRefExoticComponent>;