import { type BoxProps } from 'ink'; import React from 'react'; import { type TCardValue, type TSuit } from '../../types/index.js'; type DeckProperties = { readonly showTopCard?: boolean; readonly style?: BoxProps; readonly variant?: 'simple' | 'ascii' | 'minimal'; readonly placeholderCard?: { suit: TSuit; value: TCardValue; }; }; export declare function Deck({ showTopCard, style, variant, placeholderCard, }: DeckProperties): React.JSX.Element; export {};