import { ICrossing } from "./interfaces"; /** * Creates an HTML element displaying information about a crossing location. * @param crossing Response from BridgeVC ArcGIS Server Object Extension (SOE). * @returns If there is data for both directions, a tab container div is returned. * If there is only data for a single direction, the equivalent of a tab panel is * returned. */ export declare function createControl(crossing: ICrossing): HTMLDivElement;