import type { AsciiTheme, TCardValue, TSuit } from '../types/index.js'; /** * ASCII art for special cards (face cards and ace) in ASCII variant. * Art will be centered within the card. * The {suit} placeholder will be replaced with the actual suit symbol. */ export declare const ORIGINAL_ASCII_CARD_ART: Partial>; /** * Animal Kingdom theme ASCII art for face cards. * Each suit represents a different family of animals: * - Hearts: Big Cats (Lion, Tiger, etc.) * - Diamonds: Birds (Eagle, Swan, etc.) * - Clubs: Forest Animals (Wolf, Bear, etc.) * - Spades: Mystical Creatures */ export declare const ANIMAL_CARD_ART: Partial>; /** * Abstract Geometric theme ASCII art for face cards. * Each suit uses different geometric shapes: * - Hearts: Diamonds (◇, ◆) * - Diamonds: Circles (○, ●) * - Clubs: Squares (□, ■) * - Spades: Triangles (▲, ▼) */ export declare const GEOMETRIC_CARD_ART: Partial>; /** * Pixel art style theme */ export declare const PIXEL_CARD_ART: Partial>; /** * Medieval/Fantasy theme using pure ASCII/box-drawing characters */ export declare const MEDIEVAL_CARD_ART: Partial>; /** * Map of geometric symbols for each suit */ export declare const GEOMETRIC_SYMBOLS: Record; /** * Map of animal characteristics for each suit */ export declare const ANIMAL_FEATURES: Record; /** * Map of pixel art features for each suit */ export declare const PIXEL_FEATURES: Record; /** * Map of medieval features for each suit using ASCII/box-drawing characters */ export declare const MEDIEVAL_FEATURES: Record; export declare const THEME_MAP: Record>>; /** * Simple art for special cards (face cards and ace) in simple variant. * Ace art will be centered, face cards will be right-aligned. * The {suit} placeholder will be replaced with the actual suit symbol. */ export declare const SIMPLE_CARD_ART: Partial>;