import { LeaguesSeason } from "./DemonicPact.model";
export declare enum LeagueRegionName {
    Misthalin = "Misthalin",
    Karamja = "Karamja",
    Asgarnia = "Asgarnia",
    FremennikProvince = "Fremennik Province",
    Kandarin = "Kandarin",
    KharidianDesert = "Kharidian Desert",
    Morytania = "Morytania",
    Tirannwn = "Tirannwn",
    Wilderness = "Wilderness",
    KebosAndKourend = "Kebos and Kourend",
    Varlamore = "Varlamore"
}
export interface LeagueRegion {
    name: LeagueRegionName;
    wikiUrl: string;
    isStarterUnlocked: boolean;
    isTutorialUnlocked: boolean;
}
export interface RegionUnlockMilestone {
    unlockNumber: number;
    tasksRequired?: number;
}
export interface LeaguesRegionSet {
    season: LeaguesSeason;
    displayName: string;
    source: string;
    regions: LeagueRegion[];
    selectableUnlockMilestones: RegionUnlockMilestone[];
    maxSelectableRegions: number;
}
//# sourceMappingURL=LeaguesRegion.model.d.ts.map