import type { TSuit, TSuitIcon } from '../types/index.js'; /** * Defines the dimensions and layout configuration for different card variants */ export declare const CARD_DIMENSIONS: { readonly ascii: { readonly width: 15; readonly height: 13; readonly pip: { readonly left: 2; readonly center: 6; readonly right: 10; }; readonly padding: 0; }; readonly simple: { readonly width: 11; readonly height: 9; readonly pip: { readonly left: 2; readonly center: 4; readonly right: 6; }; readonly padding: 0; }; readonly minimal: { readonly width: 6; readonly height: 5; readonly padding: 0; }; }; /** * Maps suit names to their corresponding Unicode symbols */ export declare const SUIT_SYMBOL_MAP: Record; export declare const SYMBOL_SUIT_MAP: Record;