import { IStop } from "./IStop";
export type TransferStops = {
    stops: IStop[];
    currentStopIndex: number;
};
