import { Duration } from "../../journey/Journey"; /** * Loads interchange time from the database */ export declare class InterchangeRepository { private readonly db; constructor(db: any); /** * Load the interchange time from the transfers table */ getInterchange(): Promise; } /** * Map of Stop ID (CRS) to station interchange time in seconds */ export interface InterchangeTime { [stop: string]: Duration; }