export interface SeasonsAndEvents { sourceSheet: SeasonsAndEventSourceSheet; name: string; type: Type; versionAdded: string; versionLastUpdated: VersionLastUpdated; year: YearEnum | number | null; datesNorthernHemisphere: null | string; datesSouthernHemisphere: null | string; displayName: string; eventNotes: null | string; internalLabel: string[] | null; unlockDate: string; unlockMethod: boolean | UnlockMethodEnum; uniqueEntryId: string; translations: Translations | null; } export declare enum SeasonsAndEventSourceSheet { SeasonsAndEvents = "Seasons and Events" } export interface Translations { sourceSheet: TranslationsSourceSheet; id: number | string; eUde: string; eUen: string; eUit: string; eUnl: string; eUru: string; eUfr: string; eUes: string; uSen: string; uSfr: string; uSes: string; jPja: string; kRko: string; tWzh: string; cNzh: string; plural: boolean; } export declare enum TranslationsSourceSheet { CraftingItems = "Crafting Items", EventNames = "Event Names", HHAThemes = "HHA Themes", Shells = "Shells" } export declare enum Type { BasegameEvent = "Basegame event", CraftingSeason = "Crafting season", NookShoppingEvent = "Nook Shopping event", ShoppingSeason = "Shopping season", SpecialEvent = "Special event", ZodiacSeason = "Zodiac season" } export declare enum UnlockMethodEnum { BCATA = "BCAT (a)", BCATB = "BCAT (b)", BCATC = "BCAT (c)", NTP = "NTP" } export declare enum VersionLastUpdated { The100 = "1.0.0", The1100 = "1.10.0", The1110 = "1.11.0", The160 = "1.6.0", The170 = "1.7.0", The180 = "1.8.0", The190 = "1.9.0", The200 = "2.0.0", The204 = "2.0.4" } export declare enum YearEnum { Any = "Any" }