import { AfterViewInit, OnInit } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { TranslateService } from '@ngx-translate/core'; import { MessageService } from '../../service/message.service'; import { TableElement } from '../../table/table.element'; import { SelectCondition } from '../selectDialog/model/selectCondition'; import { SelectDialogComponent } from '../selectDialog/selectDialog.component'; export declare class SelectTenantDialogComponent extends SelectDialogComponent implements OnInit, AfterViewInit { selectedTenant: any; tenantEndPoint: string; constructor(messageService: MessageService, dialogRef: MatDialogRef, data: SelectCondition, translateService: TranslateService); ngOnInit(): void; ngAfterViewInit(): void; onTenantSelected(tenant: any): void; protected handleSelect(result: any[]): TableElement[]; doSelect(selectedElements: any[]): void; }