import type { SeedInput } from '../seed'; import type { CacheItemRef, LootCacheSession } from './lootcache.types'; export declare const LOOT_CACHE_TUNING: Readonly<{ trapChance: readonly number[]; trapBite: readonly number[]; falseBottomBonus: 0.5; tithesBonus: 1; falseBottomFloor: 3; }>; export declare const LOOT_CACHE_KEEPSAKE = "A dead stranger's luck, inherited"; export declare function createLootCacheSession(seed: SeedInput, items: readonly CacheItemRef[], currency: number): LootCacheSession; export declare function beginLootCache(s: LootCacheSession): LootCacheSession; export declare function delveLootCache(s: LootCacheSession): LootCacheSession; export declare function probeLootCache(s: LootCacheSession): LootCacheSession; export declare function sealLootCache(s: LootCacheSession): LootCacheSession; export declare function continueLootCacheCard(s: LootCacheSession): LootCacheSession; export declare function claimLootCacheOutcome(s: LootCacheSession): LootCacheSession; //# sourceMappingURL=lootcache.engine.d.ts.map