export declare const Default: { readonly Unrated: "unrated"; readonly Competitive: "competitive"; readonly Spikerush: "spikerush"; readonly Deathmatch: "deathmatch"; readonly Escalation: "ggteam"; readonly Replication: "onefa"; readonly Snowball_Fight: "snowball"; readonly Swiftplay: "swiftplay"; readonly Team_Deathmatch: "hurm"; readonly Custom: ""; readonly Custom_Tournament: "tournamentmode"; readonly New_Map: "newmap"; }; export type Name = keyof typeof Default; export type ID = Exclude<(typeof Default)[Name], (typeof Default)["New_Map"] | "">; export declare function fromName(x: Name, newMapID?: string): ID; export declare function fromID(x: ID, newMapID?: string): Name;