/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
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 * as i0 from "@angular/core";
/**
* Represents a collection of one or more category axis items.
*
* @example
* ```ts
* import { Component } from '@angular/core';
*
* @Component({
* selector: 'my-app',
* template: `
*
*
*
*
*
*
*
*
*
*
* `
* })
* class AppComponent {
* }
* ```
*
* @remarks
* Supported children components are: {@link CategoryAxisItemComponent}.
*/
export declare class CategoryAxisComponent extends CollectionComponent {
protected configurationService: ConfigurationService;
protected collectionService: CollectionService;
children: QueryList- ;
constructor(configurationService: ConfigurationService, collectionService: CollectionService);
static ɵfac: i0.ɵɵFactoryDeclaration;
static ɵcmp: i0.ɵɵComponentDeclaration;
}