import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { NgbModal, NgbModalConfig, NgbModalRef } from '@ng-bootstrap/ng-bootstrap'; import { InputResponse } from '../inputs/input-response'; import { SelectLinkedListBase } from './select-linked-list-base'; import { LinkedListHeaderType } from './linked-list-headers-type.model'; import * as i0 from "@angular/core"; export declare class LinkedListComponent implements OnInit, SelectLinkedListBase, OnChanges { private modalService; private config; constructor(modalService: NgbModal, config: NgbModalConfig); id: string; idRelation?: string; modalTitle?: string; cancelLabelModal?: string; source: object[]; headers: LinkedListHeaderType[]; onEventRowSelected?: EventEmitter; onEventSearch?: EventEmitter; onEventClear?: EventEmitter; onLoadRows?: EventEmitter; onOpening?: EventEmitter; tooltipSearchButton?: string; tooltipClearButton?: string; modalRef?: NgbModalRef; emitOpeningModal(): void; open(): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; private showLoader; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }