import { Deck } from './_deck'; import { JokerCard } from '../cards'; import { RandomGenerator } from '../shuffle'; export interface BarajaDeckOpts { /** Either a number of jokers to generate, or an array of specific joker cards to add to the deck */ jokers?: number | JokerCard[]; /** Create a stripped deck (no 8 or 9 rank cards) */ stripped?: boolean; rng?: RandomGenerator; } export declare class BarajaDeck extends Deck { constructor(opts?: BarajaDeckOpts); private static generateCards; }