import { parseTrain } from "./parsers/train.js"; export type Arrival = ReturnType; export declare const VERSION: string; export default class SlowZone { apiKey: string; constructor(options: { apiKey: string; }); getArrivalsForStation(stationId: string | number, options?: {}): Promise; getArrivalsForStop(stopId: string | number, options?: {}): Promise; followTrain(runId: string | number): Promise; private getArrivals; private fetch; private makeRequest; }