import { IDeckConfig } from '../types/deck-config'; export declare class Card { private deckConfig; name: string; suit: string; unit: string; pointValue: number; unitPriority: number; get value(): number; get pokerPriority(): number; get suitPriority(): number; constructor(name: string, deckConfig?: IDeckConfig); } export declare class Deck { private cards; private left; private config; constructor(config?: IDeckConfig); get cardsLeft(): Card[]; shuffle: () => void; deal: (config: { perPerson?: 'even' | number; toTable?: number; }, personCount: number) => { players: string[][]; table: string[]; }; } //# sourceMappingURL=deck.d.ts.map