import type { TSuit, TCardValue } from '../../types/index.js'; /** * Special card Unicode points */ export declare const SPECIAL_CARDS: { readonly CARD_BACK: string; readonly RED_JOKER: string; readonly BLACK_JOKER: string; readonly WHITE_JOKER: string; }; /** * Get the Unicode character for a specific card */ export declare function getCardUnicode(suit: TSuit, value: TCardValue): string;