import { OnDestroy, OnInit } from '@angular/core'; import { Subject } from 'rxjs'; import { KeyValue } from '@angular/common'; import { EditableClausePredicateWithGenerators } from '../models/predicate/editable-clause-predicate-with-generators'; import { PredicateWithGenerator } from '../models/predicate/predicate-with-generator'; import * as i0 from "@angular/core"; /** * Is responsible for the interactive creation of an OR {@link ClausePredicate} object instance. * The nested Predicates are {@link ElementaryPredicate} instances created by {@link AbstractSearchPredicateComponent}. */ export declare abstract class AbstractSearchClauseComponent implements OnInit, OnDestroy { /** * Whether the contents displayed in this component can be edited by the user or not. * * Defaults to `true` */ editable: boolean; predicate: EditableClausePredicateWithGenerators; predicateId: number; remove$: Subject; removeChild$: Subject; protected constructor(); ngOnInit(): void; ngOnDestroy(): void; trackByPredicates: (a: number, b: KeyValue) => PredicateWithGenerator; getPredicateMap(): Map; removeChildAt(id: number): void; addChildPredicate(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }