import { EventEmitter } from '@angular/core'; import { ListItemComponent } from '../list-item/list-item.component'; export declare type AlertCallDeviceType = '' | 'device'; export declare class AlertCallDevice { id?: string; key?: string; name: string; value: string | number | object | any[]; type?: AlertCallDeviceType; title?: string; } export declare class DeviceListCallComponent { /** Default Index Value selected | null */ selectedDevice: string | number | object | any[]; /** Required list of devices to show in list */ devices: AlertCallDevice[]; /** ListItem header */ header: string; readonly select: EventEmitter; onSelect(listItem: ListItemComponent): void; }