/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { MapLayer, MapMarker, MapMarkerCreatedEvent } from '@progress/kendo-charts';
import { MapComponent } from '../map.component';
import { PreventableEvent } from './preventable-event';
/**
 * Arguments for the `markerCreated` event.
 * Fires once the map has created a marker, and just before the map displays it.
 *
 * Cancelling the event prevents displaying the marker.
 */
export declare class MarkerCreatedEvent extends PreventableEvent implements MapMarkerCreatedEvent {
    /**
     * The marker instance.
     */
    marker: MapMarker;
    /**
     * The marker layer instance.
     */
    layer: MapLayer;
    /**
     * @hidden
     */
    constructor(e: MapMarkerCreatedEvent, sender: MapComponent);
}
