import Collection from 'ol/Collection'; import Feature from 'ol/Feature'; import { Interaction } from 'ol/interaction'; /** A Select interaction to delete features on click. * @constructor * @extends {Interaction} * @fires deletestart * @fires deleteend * @param {*} options interaction.Select options */ export default class Delete extends Interaction { constructor(options: any); /** Get vector source of the map * @return {Array|Array} features The features to delete * @api */ delete(features: Collection | Feature[]): void; }