import { MapLane } from '../MapLane/common'; export declare enum MapLaneOutcome { Tie = "TIE", RadiantVictory = "RADIANT_VICTORY", RadiantStomp = "RADIANT_STOMP", DireVictory = "DIRE_VICTORY", DireStomp = "DIRE_STOMP" } export declare const MapLaneOutcomeMembers: readonly [MapLaneOutcome.Tie, MapLaneOutcome.RadiantVictory, MapLaneOutcome.RadiantStomp, MapLaneOutcome.DireVictory, MapLaneOutcome.DireStomp]; export declare const getMapLaneOutcome: (match: M, mapLane: MapLane) => MapLaneOutcome | null; export declare const getMapLaneOutcomeRelativeIsVictory: (mapLaneOutcome: MapLaneOutcome, isRadiant: boolean) => boolean;