type FishingVillageQuests = 'starting-quest' | 'get-to-forest'; type NorthernForestQuests = 'gather-wood' | 'get-to-cave'; type CavernsQuests = 'gather-iron' | 'get-to-northern-city'; type NorthernCityQuests = 'find-blacksmith' | 'build-boat' | 'kill-some-time' | 'get-to-connecting-river'; type ConnectingRiverQuests = 'find-islanders' | 'join-islanders-for-ritual' | 'get-to-town-across-river'; export type QuestName = FishingVillageQuests | NorthernForestQuests | CavernsQuests | NorthernCityQuests | ConnectingRiverQuests; export {}; //# sourceMappingURL=quest.library.d.ts.map