import { WalletTagType } from '../types/walletTagType.js';
interface CardListItemButtonProps {
    onClick: () => void;
    title: string;
    icon: string;
    tagType?: WalletTagType;
}
export declare const CardListItemButton: React.FC<CardListItemButtonProps>;
export {};
