import React from 'react'; import { type AsciiTheme, type CardProps } from '../../types/index.js'; /** * Card component that renders a playing card with various display variants. * Supports simple, ASCII, and minimal display styles. * * Can be used inside or outside a DeckProvider — falls back to default * back artwork when no provider is present. */ export declare function Card({ suit, value, faceUp, selected, rounded, variant, theme, }: CardProps & { readonly variant?: 'ascii' | 'simple' | 'minimal'; readonly theme?: AsciiTheme; }): React.JSX.Element; export default Card;