/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { CollectionComponent } from '../common/collection.component';
import { CollectionService } from '../common/collection.service';
import { ConfigurationService } from '../common/configuration.service';
import * as i0 from "@angular/core";
/**
* Represents the Kendo UI Layers component for Angular. Contains a collection of one or more map layers.
*
* @example
* ```typescript
* @Component({
* selector: 'my-app',
* template: `
*
*
*
*
*
*
* `
* })
* export class AppComponent {
* public tileUrl = (args: any) => `https://tile.openstreetmap.org/${args.z}/${args.x}/${args.y}.png`;
* public shapeData = [];
* }
* ```
*
* @remarks
* Supported children components are: {@link TileLayerComponent}, {@link ShapeLayerComponent}, {@link BubbleLayerComponent}, {@link MarkerLayerComponent}.
*/
export declare class LayersComponent extends CollectionComponent {
protected configurationService: ConfigurationService;
protected collectionService: CollectionService;
constructor(configurationService: ConfigurationService, collectionService: CollectionService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}