export declare const traderTypes: readonly ["weapon_smith", "armor_smith", "alchemist", "trader", "scribe", "wand_crafter", "exotic_goods"]; export declare type TraderType = typeof traderTypes[number]; export declare const isTraderType: (someValue: any) => someValue is "weapon_smith" | "armor_smith" | "alchemist" | "trader" | "scribe" | "wand_crafter" | "exotic_goods"; export declare const asTraderType: (someValue: string) => "weapon_smith" | "armor_smith" | "alchemist" | "trader" | "scribe" | "wand_crafter" | "exotic_goods";