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