import * as preact from 'preact'; import { F as FlashcardRef } from '../flashcards-okekZcl8.js'; import '../schemas-CKipJ5Ie.js'; import 'astro/zod'; interface Props { /** Deck manifest (buildFlashcardDeck output) — card ids + fronts only. */ deck: FlashcardRef[]; /** * Persistence namespace. Corpus routes pass a base- and book-specific key * so repeated local glossary ids never share or erase another book's state. */ storageKey?: string; } declare function Flashcards({ deck, storageKey }: Props): preact.JSX.Element; export { Flashcards as default };