/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { LocalEditService } from './local-edit.service';
/**
 * @hidden
 */
export declare class FlatEditService extends LocalEditService {
    private bindingDirective;
    constructor(bindingDirective: any);
    create(item: any, parent?: any, id?: any): void;
    update(_item: any): void;
    remove(item: any, _parent?: any): void;
}
