/**-----------------------------------------------------------------------------------------
* 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 { LegendItemVisualArgs } from '../../common/property-types';
import { LegendItem } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import { LegendItemArea, LegendItemHighlight, LegendItemLine, LegendItemMarkers, LegendItemType } from '../../option-types/legend/item.interface';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI for Angular Chart Legend Item configuration.
*
* @example
*
* ```html
*
*
*
*
*
* ```
*/
export declare class LegendItemComponent extends SettingsComponent implements LegendItem {
configurationService: ConfigurationService;
/**
* Specifies the cursor style for legend items.
*/
cursor: string;
/**
* Specifies the type of the legend item.
*/
type: LegendItemType;
/**
* Specifies the line configuration for the legend item.
*/
line: LegendItemLine;
/**
* Specifies the area configuration for the legend item.
*/
area: LegendItemArea;
/**
* Specifies the markers configuration for the legend item.
*/
markers: LegendItemMarkers;
/**
* Specifies the highlight configuration for the legend item.
*/
highlight: LegendItemHighlight;
/**
* Specifies a function that creates a custom visual for the legend item.
*/
visual: (e: LegendItemVisualArgs) => drawing.Element;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}