export declare enum MetroRouteName {
    LINE_A = "A",
    LINE_B = "B",
    LINE_C = "C"
}
export declare class MetroRouteHelper {
    private static tripToRouteMetroMap;
    static getRouteId(routeName: MetroRouteName | string): string | undefined;
    static getTripRouteMap(): Record<string, string>;
    static getRouteName(tripId: string): string;
}
