/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ConfiguratorService } from '../configurator.service';
import { MenuTabbingService } from './filtering/menu-tabbing.service';
import { EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
/**
 * @hidden
 * Represents the service that is passed to the ChipMenuFilterComponent and ChipMenuSortComponent.
 */
export declare class ChipMenuService {
    configuratorService?: ConfiguratorService;
    menuTabbingService: MenuTabbingService;
    closeMenu: EventEmitter<any>;
    private sub;
    /**
     * Closes the chip menu.
     */
    close(): void;
    constructor(menuTabbingService?: MenuTabbingService, configuratorService?: ConfiguratorService);
    ngOnDestroy(): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<ChipMenuService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<ChipMenuService>;
}
