import { ReactElement } from 'react'; import { Wallet } from '@fridaygame/client'; export type WalletListTheme = 'dark' | 'light'; export interface WalletListProps { wallets?: Wallet[]; total?: number; theme?: WalletListTheme; } export declare function WalletList({ wallets, total, theme }: WalletListProps): ReactElement;