import { EventEmitter } from '@angular/core'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { LinkedListHeaderType } from '../linked-list-headers-type.model'; import { InputResponse } from '../../inputs/input-response'; import * as i0 from "@angular/core"; export declare class LinkedListDialog { activeModal: NgbActiveModal; id: string; title?: string; cancelLabel?: string; fields: LinkedListHeaderType[]; records: object[]; idRelation: string; selected?: object; onEventSearch?: EventEmitter; onEventClear?: EventEmitter; loading?: boolean; tooltipSearchButton?: string; tooltipClearButton?: string; selectRow(row: object): void; eventSearch(): void; eventClear(): void; constructor(activeModal: NgbActiveModal); keyUp(): void; onLoadValue(item: any, header: LinkedListHeaderType): any; filterRecords(): object[]; private containsValue; private setFormat; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }