import { Vector } from 'ol/layer';
import type { Coordinate } from 'ol/coordinate';
import type { Options } from 'ol/layer/Vector';
import type { LayerGetFeatureInfoResponse } from '../../types';
import type { MobilityLayerOptions } from './Layer';
/**
 * @deprecated
 */
declare class VectorLayer extends Vector {
    constructor(options: MobilityLayerOptions & Options);
    /**
     * @deprecated
     */
    clone(newOptions: MobilityLayerOptions & Options): VectorLayer;
    /**
     * @deprecated
     */
    getFeatureInfoAtCoordinate(coordinate: Coordinate): Promise<LayerGetFeatureInfoResponse>;
}
export default VectorLayer;
