import { type TarotCardProps } from './index.js'; /** * Creates a standard 78-card tarot deck. * * - 22 Major Arcana (The Fool through The World) * - 56 Minor Arcana (Ace–10 + Page/Knight/Queen/King × 4 suits) * * IDs follow the pattern: * - Major: `major--` (e.g. `major-0-a1b2c3`) * - Minor: `minor---` (e.g. `minor-cups-Queen-x9y8z7`) * * @returns Array of 78 TarotCardProps (without `id` randomness baked in — each call produces unique IDs) */ export declare function createTarotDeck(): TarotCardProps[];