import { DomUtilService, EmptyValueService, JsonStoreService, PathUtilService, KeysStoreService } from '../shared/services';
import { JSONSchema } from '../shared/interfaces';
export declare class AddNewElementButtonComponent {
    domUtilService: DomUtilService;
    emptyValueService: EmptyValueService;
    jsonStoreService: JsonStoreService;
    pathUtilService: PathUtilService;
    keyStoreService: KeysStoreService;
    path: Array<any>;
    schema: JSONSchema;
    constructor(domUtilService: DomUtilService, emptyValueService: EmptyValueService, jsonStoreService: JsonStoreService, pathUtilService: PathUtilService, keyStoreService: KeysStoreService);
    addNewElement(): void;
}
