/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { OnChanges } from '@angular/core'; import { MenuBase } from '../menu-base'; import * as i0 from "@angular/core"; /** * @hidden */ export declare abstract class BindingDirectiveBase implements OnChanges { protected menu: MenuBase; data: any[]; protected fields: any[]; constructor(menu: MenuBase); ngOnChanges(): void; /** * Rebinds the Menu items. */ rebind(): void; protected abstract mapItems(items: any[]): any[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }