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