/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { drawing } from '@progress/kendo-drawing';
import { ConfigurationService } from '../../common/configuration.service';
import { Border, MarkersVisualArgs, MarkerType } from '../../common/property-types';
import { SeriesMarkers } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* Represents the configuration of the Chart series marker.
*
* @example
* ```html
*
*
*
*
*
*
*
* ```
*/
export declare class SeriesMarkersComponent extends SettingsComponent implements SeriesMarkers {
configurationService: ConfigurationService;
/**
* Specifies the background color of the markers.
*/
background: string;
/**
* Specifies the border configuration of the markers.
*/
border: Border;
/**
* Specifies the rotation angle of the markers.
*/
rotation: number;
/**
* Specifies the marker size in pixels.
* @default 6
*/
size: number;
/**
* Specifies the shape of the series markers.
* @default 'cirlce'
*/
type: MarkerType;
/**
* Determines whether the Chart displays the series markers.
* @default true
*/
visible: boolean;
/**
* Specifies a function that creates a custom visual for the markers.
*/
visual: (e: MarkersVisualArgs) => drawing.Element;
/**
* Specifies the `from` markers configuration.
*/
from: SeriesMarkers;
/**
* Specifies the `to` markers configuration.
*/
to: SeriesMarkers;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}