import { Deck } from "./Deck"; export declare class DeckBuilder { private params; private isShuffled; private type; constructor(); unshuffled(): this; deckCount(amount: number): this; blackjack(): this; standardWithJokers(): this; standard32(): this; standard32WithJokers(): this; tarot(): this; rummy(): this; uno(): this; empty(): this; custom(cards: string[]): this; build(): Deck; }