import ArcGisError from "./ArcGisError"; import { ICrossing } from "./interfaces"; export * from "./CollapsablePanel"; export * from "./control"; export * from "./conversion"; export * from "./interfaces"; export * from "./LaneVCTable"; export * from "./Tabs"; export { ArcGisError }; /** * Uses fetch API go retrieve info about a crossing location * using the Bridge Vertical Clearance REST SOE. * @param crossingLocationId Unique identifying integer of a crossing location. * @param mapServerUrl URL of the map service that will be queried. */ export declare function fetchCrossingInfo(crossingLocationId: number, mapServerUrl?: string): Promise;