import { ElementRef, OnInit } from '@angular/core'; import { FormControl } from '@angular/forms'; export declare class DeviceOptionComponent implements OnInit { control: FormControl; devices: MediaDeviceInfo[]; label: string; select: ElementRef; name: string; ngOnInit(): void; onDeviceSelected(event: MouseEvent, device: MediaDeviceInfo): void; }