/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { AfterContentChecked, ViewContainerRef } from '@angular/core'; import { QueryList } from '@angular/core'; import { CollectionComponent } from '../common/collection.component'; import { CollectionService, Item } from '../common/collection.service'; import { ConfigurationService } from '../common/configuration.service'; import { TooltipTemplateService } from '../common/tooltip-template.service'; import * as i0 from "@angular/core"; /** * Represents collection of one or more series items ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/series)). * * @example * ```html * * * * * * * ``` * * @remarks * Supported children components are: {@link SeriesItemComponent}. */ export declare class SeriesComponent extends CollectionComponent implements AfterContentChecked { protected configurationService: ConfigurationService; protected collectionService: CollectionService; protected tooltipTemplateService: TooltipTemplateService; viewContainer: ViewContainerRef; children: QueryList; constructor(configurationService: ConfigurationService, collectionService: CollectionService, tooltipTemplateService: TooltipTemplateService, viewContainer: ViewContainerRef); ngAfterContentChecked(): void; protected readTooltipTemplates(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }