import type { Eta, RouteListEntry } from "./type";
interface fetchEtasProps {
    stopId: string;
    nlbId: RouteListEntry["nlbId"];
    language: "zh" | "en";
}
export default function fetchEtas({ stopId, nlbId, language, }: fetchEtasProps): Promise<Eta[]>;
export {};
