import { type TCard } from '../../types/index.js'; /** * Creates a standard deck of 52 playing cards, each with a unique ID. */ export declare function createStandardDeck(): TCard[]; /** * Creates a paired deck of cards for games like Memory. * Each value appears an even number of times. Cards are optionally shuffled. */ export declare function createPairedDeck(shufflePairs?: boolean): TCard[];