import type { PokerCard } from './PokerCard'; /** * Create a 52-card deck. * You might want to use {@link shuffleArray} to shuffle the deck. */ export declare function createPokerDeck(): PokerCard[];