import React from 'react'; export interface ItemCardProps { name: string; price?: string; image: string; rarity?: ItemRarity; onBuy?: () => void; className?: string; } export type ItemRarity = 'rare' | 'premium' | 'unique' | 'idol'; export declare const ItemCard: React.ForwardRefExoticComponent>; export interface NewsCardProps { title: string; date: string; thumbnail?: string; category?: string; categoryColor?: string; href?: string; className?: string; empty?: boolean; } export declare const NewsCard: React.ForwardRefExoticComponent>; export interface RankEntryProps { rank: number; name: string; avatar?: string; level?: string; grade?: string; guild?: string; href?: string; className?: string; } export declare const RankEntry: React.ForwardRefExoticComponent>; export interface DriverCardProps { name: string; description: string; icon: string; downloadUrl: string; className?: string; } export declare const DriverCard: React.ForwardRefExoticComponent>; export interface CardProps { children: React.ReactNode; className?: string; hoverable?: boolean; } export declare const Card: React.ForwardRefExoticComponent>; export interface CardHeaderProps { children: React.ReactNode; className?: string; } export declare const CardHeader: React.ForwardRefExoticComponent>; export interface CardTitleProps { children: React.ReactNode; className?: string; } export declare const CardTitle: React.ForwardRefExoticComponent>; export interface CardDescriptionProps { children: React.ReactNode; className?: string; } export declare const CardDescription: React.ForwardRefExoticComponent>; export interface CardContentProps { children: React.ReactNode; className?: string; } export declare const CardContent: React.ForwardRefExoticComponent>; export interface CardFooterProps { children: React.ReactNode; className?: string; } export declare const CardFooter: React.ForwardRefExoticComponent>; export default Card; //# sourceMappingURL=card.d.ts.map