import Lane from '../utils/lanes'; export declare enum MapLane { Top = 1, Middle = 2, Bottom = 3, Roaming = 4, Jungle = 5 } export declare const MapLaneMembers: readonly [MapLane.Top, MapLane.Middle, MapLane.Bottom, MapLane.Roaming, MapLane.Jungle]; export declare const getMapLane: (lane: Lane.Id | Lane.Enum | null | undefined, isRadiant: boolean) => MapLane | undefined;