export default Difference; /** * Control for creating a difference of geometries. * @extends {Control} * @alias ole.Difference */ declare class Difference { /** * @inheritdoc * @param {Object} [options] Control options. * @param {number} [options.hitTolerance] Select tolerance in pixels * (default is 10) */ constructor(options?: { hitTolerance?: number | undefined; } | undefined); /** * Apply a difference operation for given features. * @param {Array.} features Features. */ applyTopologyOperation(features: Array): void; }