import type { Eta, RouteListEntry } from "./type";
interface fetchEtasProps {
    route: RouteListEntry["route"];
    bound: RouteListEntry["bound"]["ctb"];
    stopId: string;
    seq: number;
}
export default function fetchEtas({ stopId, route, bound, seq, }: fetchEtasProps): Promise<Eta[]>;
export {};
